我正在努力学习设计网站。
1000px
吗?这是我的html / css代码:
答案 0 :(得分:1)
将max-width:1000px;
添加到.wrapper
课程并制作.content
课程float:left
.wrapper {
margin: 0;
height: auto;
max-width:1000px; /*add this line*/
}
.content {
background-color: slateblue;
width: 500px;
float:left; /*add this line*/
}
答案 1 :(得分:0)
你的意思是这样的?:
html, body {
margin: 0 auto;
display: table;
height: 100%;
width: 100%;
width: 1000px;
}
.content {
background-color: slateblue;
width: 500px;
display: inline-block;
float:left;
}
答案 2 :(得分:0)
如果您对响应式设计比较陌生,我建议使用框架
回答你的问题。
Ya您可以将页面宽度设置为1000px。
#wrapper{
margin: 0 auto;
width: 100%;
max-width: 1000px;
}
.content{
width: 50%;
float:left;
}
@media screen and (max-width: 480px) {
.content{
width:100%;
}
}
由于上面的查询,如果屏幕分辨率小于480px,内容将占据100%宽度并水平堆叠。使用%width可帮助您设计响应式网页