引导中心标题
这是我的第一个Twitter Bootstrap的经验。 我已经添加了一些标题(h1,h2等),它们左alignment。 什么是正确的方法来标题?
.text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; }
bootstrap已经为文本alignment添加了三个CSS类。
只需在元素中使用class ='text-center'作为中心标题。
<h2 class="text-center">sample center heading</h2>
在左标题的元素中使用class ='text-left',在右标题的元素中使用class ='text-right'。
根据您的意见,要将所有标题居中,您只需将text-align:center
同时添加到所有标题中,如下所示:
CSS
h1, h2, h3, h4, h5, h6 { text-align: center; }
Bootstrap带有许多预构build类,其中一个是class="text-left"
。 请随时拨打这个课程。 🙂