我想要在div中输入文字,并在背景中输入字间距和图像。 的我想要实现的一个例子:以字间距和背景图像为中心的文本
她是一个小提琴,显示了我实现迄今:
div {
width: 200px;
}
h2 {
display: inline-block;
text-align: center;
color: #000000;
word-spacing: 40px;
background: url("http://s33.postimg.org/twxfn1by7/Playlist_Triangle.png") top center no-repeat;
background-size:50px;
padding: 20px 0;
}
<div>
<h2>
Some text
</h2>
</div>
那么这里有什么问题? –