button with transparent background code example
Example 1: transparent button css
button {
background-color: rgba(255,255,255,0);
}
Example 2: button transparent using css
<button type="submit" name="submitDetails">Submit Data</button>
<style>
button {
background-color: rgba(255,255,255,0);
}
</style>