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