Here are some examples of how I use this property in my projects: (1) Violently clear floating Copy code The code is as follows:<style type="text/css"> .wrap {overflow: hidden;zoom:1;background-color: #ccc;} .wrap p {float: left;} </style> Copy code The code is as follows:<div class="wrap"> <p>test of css</p> </div> (2) Prevent margins from collapsing Copy code The code is as follows:<style type="text/css"> body,p {padding: 0;margin: 0;} .wrap {overflow: hidden;zoom:1;background-color: #ccc;} .wrap p {margin-top: 20px;} </style> <div class="wrap"> <p>test of css</p> </div> (3) In IE-6, solve the problem of defining 1px high block elements Copy code The code is as follows:<style type="text/css"> .line {height: 1px;background-color: #ccc;overflow: hidden;} </style> <div class="line"></div> (4) Create a two-column layout Copy code The code is as follows:<style type="text/css"> div {height: 500px;} .left {float: left;background-color: #000;width: 200px;margin-right: 5px;} .right {overflow: hidden;zoom:1;background-color: #ccc;} </style> <div class="left"></div> <div class="right"></div> |
<<: Mysql practical exercises simple library management system
>>: Detailed operations of building RabbitMq's common cluster and mirror cluster with Docker
This article shares a draggable login box impleme...
Table of contents one. environment two. Precautio...
Note: Currently, the more popular front-end frame...
0. Environment Operating system for this article:...
When threads execute concurrently, we need to ens...
recommend: Navicat for MySQL 15 Registration and ...
Design the web page shown above: <!DOCTYPE htm...
The default template method is similar to vue2, u...
Table of contents 1. Download the virtual machine...
Table of contents 1. We found that this website m...
Overview: Oracle scott user has four tables, whic...
This article example shares the specific code of ...
Table of contents 1. What is a closure? 2. The ro...
After the application is containerized, when the ...