Answers for "how to align pictures to the right in html"

0

how to align image with text in html

<div class="box">
    <img src="https://via.placeholder.com/60x60">
    <span style="">Works.</span>
</div>

.box {
   display: flex;
   align-items:center;
}
Posted by: Guest on November-08-2021
-1

how to set image alignment in html

<img src="logo3.png" align="right" alt="logo">
Posted by: Guest on September-26-2021

Code answers related to "how to align pictures to the right in html"

Browse Popular Code Answers by Language