All TalkersCode Topics

Follow TalkersCode On Social Media

CSS Float

CSS Float is used to float element horizontally eighter left or right means it can move the element in left or right.


Example of Float

img
{
float:left;
}

Float Values

  • float:left;is used to float the element in left side.

  • float:right;is used to float the element in right side.

  • clear:both;is used to turn off the floating of elements which is after the float element.
❮ PrevNext ❯