Use HTML and CSS to achieve click Content Display and then click Hide

Source: Internet
Author: User

1.display:none, hidden elements; display:black when clicked;

2. Set the hidden element height to 0,overflow:hidden; overflow:visible when clicked;

Because the first article can only realize the click-time display, can not be implemented to continue to hide; Exclusion Method 1.

Consider the check box feature, click on the Style box with a small tick, and then click on the small tick disappears.

HTML Implementation code:

  <div>        <input type= "checkbox" id= "Dianji" >        <label for= "Dianji" >            click        </label >        <p>            

Voluptatibus non eligendi saepe animi quibusdam delectus Ab nostrum, Perferendis libero eaque

Quibusdam eveniet delectus optio deleniti maiores libero incidunt? </p> </div>

CSS Implementation code:

123 p{ &NBSP;&NBSP;&NBSP;&NBSP; border 1px  solid  red &NBSP;&NBSP;&NBSP;&NBSP; height 0px      /* display:none; */      overflow hidden }
12345 input:checked~p{    /* display: block; */    overflowvisible;} 

Use HTML and CSS to achieve click Content Display and then click Hide

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.