开发者

How to make a transparent background without background image?

开发者 https://www.devze.com 2023-01-06 22:11 出处:网络
I would like a div to have a transparent background. I tried to do this using background-color and opacity, but the p开发者_开发知识库roblem is that the border and the text inside become also transpar

I would like a div to have a transparent background.

I tried to do this using background-color and opacity, but the p开发者_开发知识库roblem is that the border and the text inside become also transparent. Example here.

Is this possible to achieve this without using transparent PNG background image ?


If you just want the color of the background to be transparent and not the child content, use

background-color: rgba(0,0,0,.5); // Sets to 50% transparent

See this page for more details - it's a css3 spec so won't show up in every browser:

http://www.css3.info/introduction-opacity-rgba/


Yes.

Set background-color: transparent;

and do not use opacity, as that is what makes semi-transparent the whole div..

updated your example at http://jsfiddle.net/eU7By/1/

UPDATE after comments

you can use rgba for the background-color as @DHuntrods mentions. IE needs some tweaking of'course.. http://leaverou.me/2009/02/bulletproof-cross-browser-rgba-backgrounds/


The most cross-browser solution is to use the opacity property on an additional "absolutely positioned" child element (in a relatively or absolutely positioned parent): it only there to contain the colored transparent background.

Then you can use the opacity property to make this element transparent. Since this element has no children, the opacity will not affect any other element.

Opacity is an IE5+ property, just use (see http://css-tricks.com/snippets/css/cross-browser-opacity/):

-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";    /* IE 8 */
filter: alpha(opacity=50);  /* IE 5-7 */
-moz-opacity: 0.5;          /* Netscape */
-khtml-opacity: 0.5;        /* Safari 1.x */
opacity: 0.5;               /* Good browsers */

see the jsFiddle example http://jsfiddle.net/DUjzX/1/

The whole code looks like:

The HTML:

 <div class="my-cool-wrapper">
      <div class="text-and-images-on-top">
           <p>Here some content (text AND images) "on top of the transparent background"</p>
           <img src="http://i.imgur.com/LnnghmF.gif">
      </div>
      <div class="transparent-background">
      </div>
 </div>

The CSS:

 .my-cool-wrapper {
      position: relative;
 }
 .my-cool-wrapper .text-and-images-on-top {
      padding: 10px 15px 19px 15px;
      z-index: 1;
      position: relative; /* needed to enable the z-index */
 }
 .my-cool-wrapper .transparent-background {
      position: absolute;
      top: 0;    
      width: 100%;
      height: 100%;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";       /* IE 8 */
      filter: alpha(opacity=10);  /* IE 5-7 */
      -moz-opacity: 0.1;          /* Netscape */
      -khtml-opacity: 0.1;        /* Safari 1.x */
      opacity: 0.1;               /* Good browsers */
      background-color: blue;
 }

read more: Set opacity of background image without affecting child elements

Screenshots proofs

How to make a transparent background without background image?

How to make a transparent background without background image?

How to make a transparent background without background image?

How to make a transparent background without background image?

How to make a transparent background without background image?

ps: I did not add the screenshots for Chrome, Firefox & Safari since these are much "better" browsers... trust me, it works for them too.


I had to use a 30x30 transparent gif as a background.

background:url('absolute path here');


A very simple CSS method to have a clear transparent background in html is this code.

background: rgba(0, 0, 0, 0.6)!important;
0

精彩评论

暂无评论...
验证码 换一张
取 消