【发布时间】:2019-11-22 20:45:09
【问题描述】:
我正在为桌面版和移动版进行设计,但我被按钮的位置困住了,我为桌面版的按钮 ID“三、四、五、六、七、八”编写了定位 css 和在“@media only screen and (max-width: 600px){}”中为所有移动版本编写另一个定位 css,但问题是当我打开桌面版本时,它需要移动版本的定位 css。我应该怎么做才能解决这个问题。
i have tried the important keyword but it shows the same behavior.
#three,#four{
background-color:blue;
position: relative ;
left: 380px ;
top:0px ss;
}
#five,#six{
background-color: #FFA500;
position: relative;
left: 0px;
top: 0px;
}
#seven,#eight{
background-color: #4c4c4c;
position: relative;
left: 380px;
top: 0
}
@media only screen and (max-width: 600px){
#three{
position: relative;
left: 291px;
top: 137px;
}
#five{
position: relative;
left: 291px;
top: 141px;
}
#seven{
position: relative;
left: 289px;
top: 136px;
}
#two{
position: relative;
left: 291px;
top: 94px;
}
#four{
position: relative;
left: 293px;
top: 94px;
}
#six{
position: relative;
left: 296px;
top: 94px;
}
#eight{
position: relative;
left: 295px;
top: 94px;
}
}
this is the code.
【问题讨论】:
标签: html css responsive-design media-queries