Question
Problem with centering photos in columns
Hello, I have a problem when I'm publishing my website. I created another row with 2 columns underneath another row with 3 columns. When I'm clicking on preview in Dreamweaver it shows that images are centered in the second column but when I publish my site to the web images are moved to the left side.
HTML:
<div class="row1">
<div class="column1">
<img src="../fb_icon.png" class="social" width="100" alt="facebook"></a>
</div>
<div class="column1">
<a href="https://www.instagram.com/22c11_co/">
<img src="../insta_icon.png" class="social" width="100" alt="instagram"></a>
</div>
</div>
CSS
.column1 {
float: left;
width: 50%;
}
.row1::after {
content: "";
clear: both;
display: table;
}
I'm just starting my journey with HTML so please be respectful. 😄
