3.2.5 地址元素

Bootstrap为地址元素address定义了一个简单通用的样式,其主要是行间距和底部的margin。源码如下:

  1. // 源码682行
  2. address {
  3. margin-bottom: 20px;
  4. font-style: normal;
  5. line-height: 1.428571429;
  6. }

address的用法也比较简单,每一行用<br>结尾即可。

  1. <address>
  2. <strong>Twitter, Inc.</strong><br>
  3. 795 Folsom Ave, Suite 600<br>
  4. San Francisco, CA 94107<br>
  5. <abbr title="Phone">P:</abbr>
  6. (123) 456-7890
  7. </address>
  8. <address>
  9. <strong>汤姆大叔</strong><br>
  10. <a href="mailto:#">tomxu@outlook.com</a>
  11. </address>