I'm trying to make a group of buttons, but when trying this, the buttons have no gaps between them.
<div className="w3-row">
<div className="w3-col w3-right-align">
<button className="w3-btn w3-blue w3-padding w3-round" onClick={this.previewImage} >Preview</button>
<button className="w3-btn w3-green w3-padding w3-round" href="#" to="#">Generate PDF</button>
<button className="w3-btn w3-red w3-padding w3-round" href="#" to="#">Delete</button>
<button className="w3-btn w3-green w3-padding w3-round" href="#" to="#">Save</button>
<Link className="w3-btn w3-blue w3-padding w3-round" href="#" to="#">Cancel</Link>
</div>
</div>
This puts the buttons down, but without any gaps. I don't really want gaps on the right of the cancel button, as it aligns nicely with a box on the right of the screen.I really just want gaps ebtween each button. Is this possible with w3.css/
Whats the correct way to have some padding between each button, and have them next to each other?
I thought the w3-padding attribute would work, but as you see - it doesn't.