Css Button Transparent

css button transparent
button {
background-color: Transparent;
background-repeat:no-repeat;
border: none;
cursor:pointer;
overflow: hidden;
outline:none;
}
transparent button css
button {
background-color: rgba(255,255,255,0);
}
button transparent using css
<button type="submit" name="submitDetails">Submit Data</button>

<style>
button {
background-color: rgba(255,255,255,0);
}
</style>

 

 

Leave a Comment