How to create transparent background color in html & css

Mandarr Sant

I was creating a website which has menu and has a class topbar and has white background and i want to make it transperent not fully but still i can see a whit color i am using a dreamweaver so how do I do it

<html>
<head>
<title></title>
<style type="text/css">
a{
text-decoration:none;
color:black;
}
a:hover{
text-decoration:underline;
}
ul{
list-style:none;

}
li{
float:left;
font-size:20px;
padding-left:10px;

}
.background{
margin:0;
background-image:url("MWYLJ6SRDM.jpg");
background-size:1380px  auto;
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;

}
.topbar{
background-color:white;
height:50px;
width:100%;
color:black;
position:fixed;
z-index:1;
}

</style>
</head>
<body class="background">
<div class="topbar">
<ul>
<li><a href="">Home</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</div>
</body>
</html>
kkakkurt

You can use:

background-color:rgba(255, 255, 255, 0.5);

The "0.5" value in example means opacity value and you can adjust transparency in there. Other values means RGB values, so you can adjust background color with them.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

CSS make the background color transparent

From Dev

Background Color to transparent background image in css

From Dev

How to make the background color transparent

From Dev

How to change the background color of a div in HTML/CSS

From Dev

CSS Inherit for unknown Background Color is Actually Transparent

From Dev

CSS3: Transition of background color to transparent

From Dev

CSS Inherit for unknown Background Color is Actually Transparent

From Dev

CSS3: Transition of background color to transparent

From Dev

CSS - background color set, but still transparent

From Dev

How to create a transparent Color Resource?

From Dev

How to change background color to transparent in gimp?

From Dev

ImageMagick: How to change transparent background to a color?

From Dev

How to set transparent background color in UIImageView

From Dev

How to change a font/background color in transparent windows?

From Dev

How to load UIViewController with transparent Background color?

From Dev

how to change Linkedin Widget background color to transparent?

From Dev

How to Make a Div transparent with background color

From Dev

How to set background color of StackPane node to transparent using javafx/css and fxml

From Dev

Transparent border with background color

From Dev

How to create options with icon, text and background color in HTML?

From Dev

How to create a png with transparent background in inkscape?

From Dev

How to create button with gradient border and transparent background

From Dev

How to create a Venn diagram with a transparent background in R?

From Dev

How can use transparent color in QColorDialog for clear background color of text?

From Dev

How to create a transparent region (div) over semi-transparent background?

From Dev

CSS - background color around image with some transparent pixels

From Dev

How to center a image with transparent background in css?

From Dev

Background color is leaking into transparent color

From Dev

Changing the background color of a drop down list transparent in html

Related Related

  1. 1

    CSS make the background color transparent

  2. 2

    Background Color to transparent background image in css

  3. 3

    How to make the background color transparent

  4. 4

    How to change the background color of a div in HTML/CSS

  5. 5

    CSS Inherit for unknown Background Color is Actually Transparent

  6. 6

    CSS3: Transition of background color to transparent

  7. 7

    CSS Inherit for unknown Background Color is Actually Transparent

  8. 8

    CSS3: Transition of background color to transparent

  9. 9

    CSS - background color set, but still transparent

  10. 10

    How to create a transparent Color Resource?

  11. 11

    How to change background color to transparent in gimp?

  12. 12

    ImageMagick: How to change transparent background to a color?

  13. 13

    How to set transparent background color in UIImageView

  14. 14

    How to change a font/background color in transparent windows?

  15. 15

    How to load UIViewController with transparent Background color?

  16. 16

    how to change Linkedin Widget background color to transparent?

  17. 17

    How to Make a Div transparent with background color

  18. 18

    How to set background color of StackPane node to transparent using javafx/css and fxml

  19. 19

    Transparent border with background color

  20. 20

    How to create options with icon, text and background color in HTML?

  21. 21

    How to create a png with transparent background in inkscape?

  22. 22

    How to create button with gradient border and transparent background

  23. 23

    How to create a Venn diagram with a transparent background in R?

  24. 24

    How can use transparent color in QColorDialog for clear background color of text?

  25. 25

    How to create a transparent region (div) over semi-transparent background?

  26. 26

    CSS - background color around image with some transparent pixels

  27. 27

    How to center a image with transparent background in css?

  28. 28

    Background color is leaking into transparent color

  29. 29

    Changing the background color of a drop down list transparent in html

HotTag

Archive