Example code sharing for CSS pseudo-class combination usage

Source: Internet
Author: User
Using pseudo-class combination, you can use CSS instead of JS to achieve the goal, less JS

. textarea:empty:before {    display:block;    Content: ' Please enter ';    Color: #ababab;    font-size:15px;    Text-align:left;} <br>//said: When the textarea element is empty, there is no input, there is "please enter" this phrase to display  . textarea:focus:before {    display:none;} <br>//when the textarea element is focused, just use the before pseudo-class add "Please enter" will hide the <br><br>.textarea:empty:after {content: ' Please fill in carefully. ';   Color: #ababab;   font-size:11px;   Text-align:left;}. Textarea:focus:focus {    display:none;} first-child:after.order:empty+.a {    display:block;} When the <br>//order element is empty, the element a below it shows
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.