Google News
logo
CSS - Interview Questions
What is float in CSS?
The float property in CSS places an element on the right or left side of its container, allowing text and inline elements to wrap around it.
 
Example :
                                                    
.right_side{
      float: right;
      width:30%;
  }
Advertisement