Advertisement
KodingKid

CSS floating-points

Apr 3rd, 2021
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.23 KB | None | 0 0
  1. img {
  2.   float: right;
  3. }
  4. /*This causes the image to be placed right-of-center*/
  5. img {
  6.   float: left;
  7. }
  8. /*This causes the image to be placed left-of-center*/
  9. img {
  10.   float: none;
  11. }
  12. /*This causes the image to be indifferent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement