CSS Tutorial

Coming Tutorials

>Home>CSS Tutorial>Float Property

CSS Tutorial

Coming Tutorials



CSS Float Property

With the help of float property, we can control the position and layout of elements on a web page.


For example,
it can define the placement of a

either to the right or left side.

If we want display an element always to top right corner on the web page.

div {
float: left;
}

Share the article to help your friends