I am trying to move this icon to the top right of the file, but I can't, does anyone know how? (I got this icon for free from fontAwesome)
Here's the code
i {
text-align: center;
}
<head>
<script src="https://kit.fontawesome.com/d1950e8188.js" crossorigin="anonymous"></script>
<i class="fa-solid fa-cart-shopping"></i>
</head>
Because
fa-solidhasdisplay: inline-blockby default (from this rule:display: var(--fa-display,inline-block)thetext-align:rightby itself won't work.Here are a few solutions:
You can set the CSS vars
--fa-displaythere is built in in font-awesome CSS and addtext-align: rightIf you like flex, you can use
display: flex; justify-content: flex-end;