我正在 joomla 中创建一个网站,并且我大部分时间都在使用自定义 HTML 模块。每次创建新模块时,我都会在每个模块中设置样式,但我只需要相同的样式。自定义 html 模块的示例:
样品。
<style>
#amateurIcon{margin-top: 100px;}
</style>
<p id = "amateurIcon"><img src="images/Industries_icon/industry_chef.png"alt="" /></p>
然后
<style>
#otherIcon{margin-top: 100px;}
</style>
<p id = "otherIcon"><img src="images/Industries_icon/industry_other.png" alt="" /></p>
我一遍又一遍地这样做是浪费时间。我只想创建一个可以在任何自定义 HTML 模块中随时调用的类。我该怎么做?
谢谢。