在一个DIV中设置2种文本样式,包括列表

时间:2014-03-05 16:59:01

标签: html css text styling

我希望我网站的页脚能够容纳2个链接:一个符合Cookie政策,另一个符合隐私政策(页脚右下角)。

我还希望它包含业务地址(页脚的左下角),链接已经使用此CSS格式化(并按我希望的方式显示):

  a:link { color: #ff8132; text-decoration: none }
  a:active { color: #79888c; font-weight: bold }
  a:visited { color:#ff8132; text-decoration: none }
  a:hover { color: #404f55;  text-decoration: underline}

但是当我尝试使用这个CSS格式化地址时:

  #footer {
margin:auto;
height: 100px;
width:60%;
background-color: #101f3e;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
font-color: #EF0E12;
}

它不起作用?

我拥有的HTML:

  <div id= "footer">
  The Dry Otter</br>
  Headingley Lane</br>
  Leeds</br>
  LS6 1BL
  <a href="ottercookies.php">Cookie Policy</a>
  <a href="otterprivacy.php">Privacy Policy</a>


 </div>

任何想法?请记住,我对编码很新!

谢谢你!

0 个答案:

没有答案