码迷,mamicode.com
首页 > 其他好文 > 详细

Bootstrap文本对齐风格

时间:2015-10-27 16:54:47      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

在排版中离不开文本的对齐方式。在CSS中常常使用text-align来实现文本的对齐风格的设置。其中主要有四种风格:

  ?  左对齐,取值left

  ?  居中对齐,取值center

  ?  右对齐,取值right

  ?  两端对齐,取值justify

为了简化操作,方便使用,Bootstrap通过定义四个类名来控制文本的对齐风格(具体源码查看bootstrap.css文件第488行~第499行):

  ?   .text-left:左对齐

  ?   .text-center:居中对齐

  ?   .text-right:右对齐

  ?   .text-justify:两端对齐

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>文本对齐风格</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
</head>

<body>
<p class="text-left">我居左</p>
<p class="text-center">我居中</p>
<p class="text-right">我居右</p>
<p class="text-justify">There is clearly a need for CSS to be taken seriously by graphic artists. The Zen Garden aims to excite, inspire, and encourage participation. To begin, view some of the existing designs in the list. Clicking on any one will load the style sheet into this very page. The code remains the same, the only thing that has changed is the external .css file. </p>

</body>
</html>

 

Bootstrap文本对齐风格

标签:

原文地址:http://www.cnblogs.com/LO-ME/p/4914286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!