我有4 div
s與button
類別。 有時一個頁面可能有5個div
與該類名稱,所以我需要改變它們的寬度,以使它們適合頁面。更改寬度取決於兒童總數div
這是我的CSS:
<style>
.button{
width:25%;
}
@media only screen and (max-device-width: 480px) {
.button{
width:100%;
}
}
</style>
這是我的html:
<div id="center">
<div class="button" style=" background: blue; float:left;">test</div>
<div class="button" style=" background: red; float:left;">test</div>
<div class="button" style=" background: purple; float:left;">test</div>
<div class="button" style=" background:orange; float:left;">test</div>
</div>
這是我嘗試在JavaScript
<script type="text/javascript">
$(document).ready(function() {
if($("#center div").length == 4);
button.style.width = '25%';
}
else{
button.style.width = '20%';
}
});
</script>
但是這個腳本不起作用。
你有沒有嘗試過所有發佈的答案? – fcalderan 2015-03-31 15:55:44