私は4つのタグを持っていa
ます。各 CSS のすべてが機能します。私の電話のボタンのサイズを完全に変更します。私が持っている唯一の問題は、ログイン/登録ボタン、ボタン内のテキストカット、および表示されるのはログイン/登録だけです。
私が思い出すwhite-space: normal
のはこれを行う方法ですが、多分私は間違っています。
@media only screen and (max-device-width: 480px) {
.newsButton {
width: 49%;
height: 140px;
white-space: normal;
float: left;
}
.venueButton {
width: 49%;
height: 140px;
white-space: normal;
float: right;
}
.learnButton {
width: 49%;
height: 140px;
white-space: normal;
float: left;
}
.loginButton {
width: 49%;
height: 140px;
white-space: normal;
float: right;
}
}
<a href="menu.php" class="newsButton" data-role="button" data-theme="e">News</a>
<a href="venue.php" class="venueButton" data-role="button" data-theme="e">Venue Hire</a>
<a href="learn.php" class="learnButton" data-role="button" data-theme="e">Learn</a>
<a href="login.php" class="loginButton" data-role="button" data-theme="e">Login/Register</a>