How do I set a translucent border in CSS?

Source: Internet
Author: User
You can refer to my code below:

xxx:{    border:5px solid rgba (xxx, xxx, xxx, 0.5)}

One of the first xxx is the element you choose to need translucent
The next xxx is the color you want to translucent
Set the transparency to 0.5 to be translucent.

. Transparent{filter:alpha (opacity=50);-moz-opacity:0.5;-khtml-opacity:0.5;opacity:0.5;} Filter:alpha (OPACITY=50): This is for the IE6 set, the value is 0-100, the other three 0 to 1.-moz-opacity:0.5; This is to support some of the older versions of Mozilla browser. -khtml-opacity:0.5; This is to support some of the older versions of the Safari browser. opacity:0.5; This is the most important because it is a CSS standard. This property supports Firefox, Safari, and Opera.

Hello, can try to use

Border-style:solid;border-color:rgba (250,0,255,0.7)

* Note: Rgba corresponds to red and green blue and transparent values, where the RGB interval is 0 (pure black) to 255 (solid color) Transparency a interval is 0 (completely transparent) to 1 opaque

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.