Answers for "add horizontal space between buttons"

0

space between buttons css

<style>
/* Added to highlight spacing */
.is-grouped {   
    display: inline-block;
    background-color: yellow;
}

.is-grouped > .button:not(:last-child) {
    margin-right: 10px;
}
</style>

Spacing shown in yellow<br><br>

<div class='is-grouped'>
    <button class='button'>Save</button>
    <button class='button'>Save As...</button>
    <button class='button'>Delete</button>
</div>
Posted by: Guest on December-22-2020
0

add horizontal space between buttons

<style>
/* Added to highlight spacing */
.is-grouped {   
    display: inline-block;
    background-color: yellow;
}

.is-grouped > .button:not(:last-child) {
    margin-right: 10px;
}
</style>

Spacing shown in yellow<br><br>

<div class=is-grouped>
    <button class=button>Save</button>
    <button class=button>Save As...</button>
    <button class=button>Delete</button>
</div>
Posted by: Taylor Swift on March-10-2022

Code answers related to "add horizontal space between buttons"

Browse Popular Code Answers by Language