我在果园中创建了列表,而h1标签则列出了列表的标题。我需要为标题添加一个子弹。
我需要在h1标签之前使用子弹,如下图所示
<header>
<h1>School info</h1>
</header>
我使用了background:image属性,但它没有显示子弹。我怎么能得到子弹?
答案 0 :(得分:0)
尝试:
h1:before {
background-image: url(http://www.alexander-bown.com/wp-content/uploads/2011/05/big-black-dot.jpg);
background-repeat: no-repeat;
background-size: 20px;
width: 20px;
height: 20px;
display: inline-block;
content:"";
vertical-align: middle;
}
答案 1 :(得分:0)
答案 2 :(得分:0)
<强> HTML 强>
<header>
<ul>
<li><h1> School Info </h1> </li>
</ul>
</header>
<强> CSS 强>
li
{
list-style-type:square;
font-size:small;
}
h1
{
color: #3E5DA3;
font-size: 12px;
padding-bottom: 10px;
font-weight: bold;
}
答案 3 :(得分:0)