求教布局问题_html/css_WEB-ITnose
程序员文章站
2022-04-20 13:17:20
...
第一张是100%时候的,左边和头部标题都正常显示,但像第二张一样缩小为50%时候时,左边和头部都显示不正常了,使什么问题
代码是这样的:
body{
text-align:center;
margin:0 auto;
background-color:#f4f4f5;
}
.div_top{
width:1000px;
height:100px;
margin:0 auto;
}
.div_left{
width:150px;
height:500px;
}
.div_top_img img{
width:100px;
height:100px;
float:left;
}
.div_top_nav ul{
width:500px;
margin:0 0 0 200px;
}
.div_top_nav li{
display:inline-block;
margin:0 30px 0 0;
}
.div_top_nav a{
font-size:20px;
font-weight:bold;
line-height:100px;
}
.div_top_nav a:link{
display:block;
text-decoration:none;
width:100px;
height:100px;
background-color:#f4f4f5;
color:black;
}
.div_top_nav a:visited{
display:block;
text-decoration:none;
width:100px;
height:100px;
background-color:#f4f4f5;
color:black;
}
.div_top_nav a:hover{
background-color:gray;
}
.div_top_nav a:active{
background-color:gray;
}
.div_left ul{
border:1px solid #cdcdcd;
margin:0;
padding:0;
display:flex;
justify-content:flex-start;
flex-wrap:wrap;
list-style-type:none;
}
.div_left a{
line-height:250px;
}
.div_left a:link{
display:block;
width:74px;
height:250px;
text-decoration:none;
color:black;
}
.div_left a:visited{
color:black;
}
.div_left a:hover{
background-color:red;
}
上面是CSS样式
代码是这样的:
body{
text-align:center;
margin:0 auto;
background-color:#f4f4f5;
}
.div_top{
width:1000px;
height:100px;
margin:0 auto;
}
.div_left{
width:150px;
height:500px;
}
.div_top_img img{
width:100px;
height:100px;
float:left;
}
.div_top_nav ul{
width:500px;
margin:0 0 0 200px;
}
.div_top_nav li{
display:inline-block;
margin:0 30px 0 0;
}
.div_top_nav a{
font-size:20px;
font-weight:bold;
line-height:100px;
}
.div_top_nav a:link{
display:block;
text-decoration:none;
width:100px;
height:100px;
background-color:#f4f4f5;
color:black;
}
.div_top_nav a:visited{
display:block;
text-decoration:none;
width:100px;
height:100px;
background-color:#f4f4f5;
color:black;
}
.div_top_nav a:hover{
background-color:gray;
}
.div_top_nav a:active{
background-color:gray;
}
.div_left ul{
border:1px solid #cdcdcd;
margin:0;
padding:0;
display:flex;
justify-content:flex-start;
flex-wrap:wrap;
list-style-type:none;
}
.div_left a{
line-height:250px;
}
.div_left a:link{
display:block;
width:74px;
height:250px;
text-decoration:none;
color:black;
}
.div_left a:visited{
color:black;
}
.div_left a:hover{
background-color:red;
}
上面是CSS样式
相关文章
相关视频
推荐阅读
-
HTML img布局问题详解
-
前端基础??CSS+DIV布局_html/css_WEB-ITnose
-
?4种实现多列布局css_html/css_WEB-ITnose
-
CSS3之弹性布局_html/css_WEB-ITnose
-
[转]CSS浏览器兼容问题总结_html/css_WEB-ITnose
-
TextView采用setText赋值之后不能立即显示在页面上的问题解决_html/css_WEB-ITnose
-
p标签问题。求帮助_html/css_WEB-ITnose
-
终于成为博客员的一员了,这是我的第一篇博文,写一个关于ul li内容宽度的问题和解决方案_html/css_WEB-ITnose
-
漫谈css布局_html/css_WEB-ITnose
-
HTML??UL+CSS布局_html/css_WEB-ITnose