Four css Hiding Methods and four css Hiding Methods

Source: Internet
Author: User

Four css Hiding Methods and four css Hiding Methods

1. opacity: 0 only hides elements, but occupies the layout, so it still has an impact on the layout.

<Div class = "div1">
Snda: opacity: 0 only hides elements, but occupies the layout, so it still has an impact on the layout.
</Div>
<P> ppskdkad </p>

. Div1 {
Opacity: 0;
Width: 200px;
Height: 200px;
Border: 1px solid red;
}

 

2. visibility: hidden only hides elements, but occupies the layout.

<Div class = "div2">
This is the second div visibility: hidden, or only hides the element, but occupies the layout.
</Div>
<P> check the effect. </p>

. Div2 {
Visibility: hidden;
Width: 200px;
Height: 200px;
Border: 1px solid red;
}

 

3. display: none does not affect the layout.

<Div class = "div3">
This is the third DIV display: none, which does not affect the layout.
</Div>
<P> do not believe it. </p>

. Div3 {
Display: none;
Width: 200px;
Height: 200px;
Border: 1px solid red;
}

 

4. position: absolute does not affect the layout.

<Div class = "div4">
This is the fourth div. I don't think it will affect the layout, but it won't affect the layout either.
</Div>
<P> check </p>

. Div4 {
Position: absolute;
Top:-9999px;
Left:-9999px;
Width: 200px;
Height: 200px;
Border: 1px solid red;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.