现在,我的所有网页都在最后: 地址安培;副本; 2014-2016我的品牌.版权所有. | a href =“Contact.html”联系 / a | a href =“Privacy.html”隐私政策 / a / address 正如您可能猜到的那样,我最近不得不在
<地址>&安培;副本; 2014-2016我的品牌.版权所有. | < a href =“Contact.html”>联系< / a> | < a href =“Privacy.html”>隐私政策< / a>< / address>
正如您可能猜到的那样,我最近不得不在2015年到2016年对其进行修改.我的网站上只有20页,而且它们都是静态的.html页面,但它仍然很痛苦.
我想用css做这件事.这可能吗?
我猜的是用< div id =“endingaddress”>< / div>修改每一页.最后,然后在css文件中我需要输入如下内容:
#endingaddress
{
……什么在这里?
}
我该怎么做?
内容CSS属性不会被解释:所以你不能把文字< a>< / a> inside或& copy将按原样显示.所以你要做的就是:
#endingaddress::before { content : " © 2014-2016 My Brand. All rights reserved. |"; }
<div id="endingaddress"> <a href="Contact.html">Contact</a> | <a href="Privacy.html">Privacy Policy</a> </div>
了解有关content
属性和::before
/ :: CSS选择器之后的更多信息.