0

How do i make a button transparent??

26th Feb 2022, 4:26 PM
Marvellous Obiwulu
Marvellous Obiwulu - avatar
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); }
28th Feb 2022, 10:36 PM
Vaibhav
Vaibhav - avatar
+ 1
You can do this by using background-color: rgba (255,255,255,0.3);
26th Feb 2022, 5:58 PM
Rupali Haldiya
Rupali Haldiya - avatar
+ 1
background: transparent;
26th Feb 2022, 9:48 PM
Chigozie Anyaeji 🇳🇬
Chigozie Anyaeji 🇳🇬 - avatar
0
FF9900 Thanks
26th Feb 2022, 4:43 PM
Marvellous Obiwulu
Marvellous Obiwulu - avatar