我在删除标签一侧的滚动条时遇到问题。我已经阅读了有关添加overflow:hidden属性的内容,但我仍然对如何(以及在何处)应用该属性存有疑问。你能救我一下吗?
HTML:
<html>
<head>
<title>Circle Motion</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<div id="outer-wrapper">
<div id="wrapper">
<div id="top">
</div>
<div id="box_1">
<img src="chrome_400x400.png" />
</div>
<div id="box_2">
</div>
</div>
</div>
</body>
CSS:
#outer-wrapper {
height: 100%;
width: 1000px;
margin: 0px auto;
background-color: EAFFDB;
-moz-border-radius: 15px;
border-radius: 15px;
}
#wrapper {
height: 100%;
width: 960px;
margin: 0px auto;
background-color: EAFFDB;
overflow: auto;
}
#top {
width: 900px;
height: 110px;
margin-top: 35px;
margin-left: auto;
margin-right: auto;
margin-bottom: 35px;
background-color: white;
-moz-border-radius: 15px;
border-radius: 15px;
}
#box_1 {
width: 430px;
height: 430px;
background-color: black;
-moz-border-radius: 15px;
border-radius: 15px;
float:left;
margin-left: 30px;
margin-bottom: 30px;
text-align: center;
}
#box_1 img {
margin: 15px 0px;
}
#box_2 {
width: 430px;
height: 430px;
background-color: white;
-moz-border-radius: 15px;
border-radius: 15px;
float:right;
margin-right: 30px;
margin-bottom: 30px;
text-align: center;
}
#box_1 img {
margin: 15px 0px;
}
答案 0 :(得分:3)
它应该在您的#wrapper
样式中;
#wrapper {
height: 100%;
width: 960px;
margin: 0px auto;
background-color: #EAFFDB; /*note you were missing this hashtag before the color, which might work, but this is safer*/
overflow: hidden; /*this was auto, while it should be hidden*/
}
希望这有帮助!
答案 1 :(得分:2)
是的,您应该将overflow:hidden
应用于必须删除滚动条的元素。
您在十六进制颜色代码之前缺少主题标签(#)。
答案 2 :(得分:2)
在overflow: hidden;
类
overflow: auto;
代替#wrapper