我有一個網站,我試圖做出反應,當我申請@media only screen and (min-width: 180px) and (max-width: 267px)
時,內容區域被切斷在右側。以下是我正在應用到頁面的CSS。 請問我做錯了什麼?如何使網站的內容正文響應
謝謝。
的
CSS
.content_body{
margin: 0 auto;
width: 100%;
overflow: hidden;
padding-top: 30px;
background: #C9C7BB;
color: #555;
font-family: Tahoma, Arial, sans-serif;
font-size: 14px;
min-height: 200px;
}
.bio_wrapper{
line-height: 25px;
padding: 20px 0px 500px 50px;
}
.bio_left{
width: 800px;
float: left;
font-family: lato;
color: black;
}
.bio_images{
margin: 0;
margin-top: 30px;
margin-bottom: 90px;
}
.bio_images li{
padding-right: 35px;
display: inline;
list-style-type: none;
}
.bio_images li:last{
padding-right: none;
}
.bio_images img{
border: 4px solid #999966;
border-radius: 5px;
}
.bio_mainimage{
float:right;
width: 20%;
}
@media only screen and (min-width: 180px) and (max-width: 267px) {
.bio_mainimage{
display: none;
}
.content_body{
margin: 0 auto;
width: 50%;
overflow: hidden;
padding-top: 30px;
background: #C9C7BB;
color: #555;
font-family: Tahoma, Arial, sans-serif;
font-size: 14px;
min-height: 200px;
}
.bio_images img{
display: block;
}
}
這是[jsfiddle](http://jsfiddle.net/dotman14/R4n7B/)示例 – user1843335
我剛剛檢查了一些東西,看起來你有一個非常大的'.bio_left' –