CSS3 Web Page Production Example: input focus luminous effect

Source: Internet
Author: User

Article Introduction: CSS3----The glow effect of the input focus.

in doing the project want to do a input focus effect, feeling very handsome! Collect some information on the Internet, tidy up! Processing into my luminous effect! haha look good, share with you Ah! Add: Chrome input focus By default there is a yellow light and shade, if you do not want to be added to the CSS style

input:focus{

Outline:none;

}

You can get rid of it!

My style code:

input{

border-radius:6px;
border:1px solid #909090;
-webkit-transition:box-shadow 0.30s ease-in-out; Only let the Box-shadow attribute to do the transition effect!
-moz-transition:box-shadow 0.30s ease-in-out; Firefox

}

input:focus{

Outline:none;
border: #87C6F9 1px solid;
box-shadow:0 0 8px Rgba (103, 166, 217, 1);

}

Haha, simple! With CSS3 a few lines of style can be done, the details do enough!

Screenshot below:



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.