如何在" Sample Text"之前添加一些空间。使用 CSS ?例如
但它无法正常工作。背景应该保持原样。我不想在HTML中使用<h1 class="post-title entry-title">Some Text</h1>
!
有我的小提琴:
http://jsfiddle.net/gSVfV/293/
HTML
h1.post-title.entry-title {
background-image: url('http://www.forkingandcountry.com/sites/g/files/g2000004371/f/styles/news_landing_image/public/sample_03.jpg?itok=rk7nkdNu');
color: white;
background-repeat: no-repeat;
}
CSS
{{1}}
答案 0 :(得分:2)
您可以使用padding-left
属性在左侧添加一些填充。请参阅this updated JSFiddle。
在Mozilla Developer Network了解有关填充的详情。