0
How do i make a button transparent??
5 odpowiedzi
+ 2
use background-color: transparent; property to design the transparent background button.
/* Styling the button */
.btn {
cursor: pointer;
border: 1px solid #3498db;
background-color: transparent;
height: 50px;
width: 200px;
color: #3498db;
font-size: 1.5em;
box-shadow: 0 6px 6px rgba(0, 0, 0, 0.6);
}
+ 1
You can do this by using background-color: rgba (255,255,255,0.3);
+ 1
background: transparent;
0
FF9900
Thanks