.container {
width: 800 px;
margin: 0 auto;
}
#main {
background: url(images/header_slice.jpg) repeat-x;
}
#main.container {
background: url(images/header.jpg) no-repeat;
}
#sidebar {
float: left;
}
#sidebar h3 {
font-size: 24px;
color: #044055;
font-weight: normal;
}
#sidebar ul li a {
font-size: 14px;
color: #393838;
}
ul#subscribe li a {
font-size: 18px;
padding-left: 30px;
}
#sidebar ul {
list-style: none;
}
#sidebar {
float: left;
margin-left: 155px;
margin-top: 35px;
background: #d4d6d3;
border: 1px solid #BEBDBD;
padding: 15px 15px 30px 30px;
}
#sidebar h3 {
font-size: 24px;
color: #044055;
font-weight: normal;
padding-bottom: 20px;
padding-left: 15px;
}
#sidebar ul {
list-style: none;
padding-bottom: 25px;
}
#sidebar ul li a {
font-size: 14px;
color: #393838;
}
ul#subscribe li {
padding-bottom: 5px;
}
ul#subscribe li a {
font-size: 16px;
padding-left: 40px;
}
ul#subscribe li {
padding-bottom: 5px;
padding-left: 35px;
}
li#rss {
background: url(images/rss_icon.png) no-repeat;
background-size: 20px;
}
li#email {
background: url(images/email_icon.png) no-repeat;
background-size: 20px;
}
li#twitter {
background: url(images/twitter_icon.png) no-repeat;
background-size: 20px;
}

我正在学习如何制作基本网站:https://code.tutsplus.com/tutorials/design-and-code-your-first-website-in-easy-to-understand-steps--net-6062 容器的标题背景不会加载。
侧边栏图标也与文本重叠。我尝试在侧边栏锚中添加填充,但它没有工作。我做错了什么?
答案 0 :(得分:0)
拳头左侧有一些填充物,因此你的文字不会重叠,然后背景说它应该出现在左侧,垂直居中。我展示了如何处理li for twitter
li#twitter {
padding-left: 66px;
background: url(your-icon-path.png) no-repeat left center;
}
这里我假设您的图标大小为50像素,并且从该图标左侧填充我添加了16像素,因此您的图标不会被您的内容覆盖。
如果您希望可以查看我之前给过某人的答案Link