请原谅我的网络编程能力非常有限,这使得即使在谷歌上搜索这些主题也很困难,因为我不知道正确的术语..
无论如何,我的问题(我肯定会用奇怪的措辞,因为我真的不知道如何谈论这个问题)是:
有没有办法用 html + css 实现这个伪代码?
css 文件:
#ropeimage {
background-repeat:repeat-x;
background:url(images/rope.png);
}
#ropetext {
<div id="ropeimage">
/* some text properties */
}
然后在html文件中
<div id="ropetext">hello</div>
<div id="ropetext">there</div>
我问的原因是,即使我知道我可以做类似的事情
<div id="ropetext"><div id="ropeimage">hello</div></div>
<div id="ropetext"><div id="ropeimage">there</div></div>
如果我知道我总是需要这个,为什么不把它藏在 css 文件中。
如果有人好奇,我想做的是构建一个 div 来重复 x 一个“绳子”图像,然后垂直打印一些文本。我通常不能将所有这些都放在一个 div 中,因为绳索的背景图像会在文本下重复,所以我需要两个 div 以便图像在碰到文本 div 时立即停止重复。