Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我想让joomla文章中的文本有一个单独的背景图像。假设我有一个省略号图像(如下所示),并且我希望该文章中的每个单词在其文本后面都有省略号图像。
怎么做?
提前致谢!
你应该使用 CSSclass和span标签:
class
span
使用您的背景图像定义一个新的 css 类,并将该类添加到您的默认.css文件或自定义文件中:例如。.ellipsis {background: url(img_flwr.gif; background-repeat: no-repeat)}. 确保您在 URL 中使用正确的路径
.css
.ellipsis {background: url(img_flwr.gif; background-repeat: no-repeat)}
在单词周围放置span标签并使用class: <span class="ellipsis>word</span>。
<span class="ellipsis>word</span>
这应该有效。