问题
I have a small task where it requires the two buttons side by side when using a desktop, and then when on mobile they are stacked on top of each other but have not decreased in size.
I have managed to make them stack on top of each other but they are different sizes? Whenever I defined the % size of the buttons it makes them squish together and look hideous when in device view.
.button {
background-color: #f2f2f2;;
border: none;
color: #737373;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
border: 2px solid #003366;
font-family: sans-serif;
font-style: italic;
font-weight: bold;
font-size:0.875em;
display: inline-block;}
.button2 {
background-color: #003366;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
border: 2px solid #003366;
font-family: sans-serif;
font-style: italic;
font-weight: bold;
font-size:0.875em;
display: inline-block;}
<div class="booking">
<h2><i class="fa fa-check-circle" aria-hidden="true"
style="color:#33cc33;""> </i> Congratulations your jet2 holiday
booking has been confirmed</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Consectetur inventore, dignissimos quasi fuga sunt, nihil nemo
labore? Molestiae, eum, eos! Illum non laborum asperiores,
mollitia minima quasi atque. Eligendi, atque.</p>
<button class="button">Cancel</button>
<button class="button2">Continue</button>
</div>
回答1:
Wrap them in a div, give them percentage width
, make div have
div{
display: flex;
justify-content: space-between;
}
Padding could possibly mess up the responsiveness,so be aware of that as well
来源:https://stackoverflow.com/questions/45563138/how-do-i-make-two-buttons-side-by-side-and-responsive