what is the float property of css
ReportQuestion
2 years ago 634 views
The float CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning)
Let an image float to the right:
img {
float: right;
}
Thread Reply