Detailed introduction to the transform attribute in CSS3 to achieve vertical and horizontal centering of divs with variable width and height

黄舟
Release: 2017-05-25 10:05:12
Original
3002 people have browsed it

transforThe role of m

transform AttributeApply 2D or 3D transformation to the element . This property allows us to rotate, scale, move or tilt the element. (w3cschool)

Transform compatibility

The compatibility of transform is relatively optimistic. It is not compatible below IE9. IE9 supports the alternative -ms-transform attribute but only supports 2D conversion.

Google and Safari support the -webkit-transform attribute instead. IE9 and above, Firefox and Open are compatible.

I believe that in actual projects, you will definitely encounter the problem of p's variable width and height, vertical and horizontal centering. I remember that I used js to implement it before.

In fact, there are several ways to use css to achieve it. But I personally think it is simpler and more convenient to use transform, but it is not compatible with browsers below IE9.

Now I will show you the examples used in recent projects

In writing wheel When playing pictures, the number of dots buttons below is determined based on the number of pictures. Therefore, when writing code, the width of these button elements cannot be fixed, and they must be displayed in the center.

       

Copy after login


.scroll {
    width: 720px;
    height: 410px;
    margin: 0 auto;
    margin-top: 100px;
    overflow: hidden;
    position: relative;
}.scroll ul {
    padding: 10px 0px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    bottom: 0px;
    left: 50%;
}.scroll ul li {
    float: left;
    margin: 0px 5px;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    border:1px #73B613 solid;
    background: #FCBE47;
    box-sizing: border-box;    
}.scroll ul li.scroll_in{
    background:#FF6600;
}
Copy after login

In the above example, these buttons are hosted on an ul element. The ul element does not have a fixed width and height. A positioning left:50% from the left is written. Fifty, if you don't write transform, it will not be centered, and the width on the right will include the width of its own ul.

transform: translateX(-50%); The function of this sentence is to move ul horizontally to the left by 50% of its width relative to its own position. This just achieves the effect we want.

############# #########################################The picture above is horizontal and vertical Centered. ###

  

Copy after login
.demo{
    position: fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
Copy after login
###In fact, the above example is the same as when we write the pop-up window to center it. Isn't it very simple? With this, we don't have to write so much js and ask for help. ###### ###

The above is the detailed content of Detailed introduction to the transform attribute in CSS3 to achieve vertical and horizontal centering of divs with variable width and height. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!