bootstrap布局基本標簽總結
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
文件頭:
bootstrap在reset.css文件中設置margin為0,因此其他的標簽需要重新設計margin。 1.h<h>標簽和普通使用方法一樣。 定義了.h1~.h6六個類名,樣式和標題樣式一樣。 副標題用<small>標簽指出,必須包含在h標簽內。 <h1>Bootstrap標題一</h1> <div class="h1">Bootstrap標題一</div> <h1>Bootstrap標題一<small>我是副標題</small></h1>
2.p定義<body>的字體庫、字號、行高、顏色,<p>標簽繼承這些設置,單獨設置margin-bottom為10px,使用方法同普通方法。 強調內容增大:.lead; 加粗:<strong>; <b>(設置font-weight: bold) 斜體:<em>;<i> (設置font-style: italic) 不變:<cite> 變小:<small>,.small 強調類(顏色).text-muted:提示,使用淺灰色(#999) .text-primary:主要,使用藍色(#428bca) .text-success:成功,使用淺綠色(#3c763d) .text-info:通知信息,使用淺藍色(#31708f) .text-warning:警告,使用黃色(#8a6d3b) .text-danger:危險,使用褐色(##a94442) 文本對齊(設置text-align:center、left、right、justify) .text-left:左對齊 .text-center:居中對齊 .text-right:右對齊 .text-justify:兩端對齊
3.列表(ul ol dl)Bootstrap對于列表,只是在margin上做了一些調整 margin-top: 0; margin-bottom: 10px; 去除項目符號.list-unstyled (padding-left: 0; list-style: none;) 內聯列表,制作水平導航.list-inline 代碼<code> <pre> <kbd> <pre class=“.pre-scrollable”> 設置最大代碼區域
4.表格千萬注意,你的<table>元素中一定不能缺少類名table .table:基礎表格 .table-striped:斑馬線表格 .table-bordered:帶邊框的表格 .table-hover:鼠標懸停高亮的表格 .table-condensed:緊湊型表格 .table-responsive:響應式表格
<tr>的不同行顏色
5.表單<form role=”form”> 默認垂直顯示用<div class=“form-group”>包圍控件及其標簽 對input select textarea設置.form-control1、寬度變成了100% 2、設置了一個淺灰色(#ccc)的邊框 3、具有4px的圓角 4、設置陰影效果,并且元素得到焦點之時,陰影和邊框效果會有所變化 5、設置了placeholder的顏色為#999 水平風格表單:標簽在左,控件在右1、在<form>元素是使用類名“form-horizontal”。 2、配合Bootstrap框架的網格系統。(網格布局會在以后的章節中詳細講解) 內聯表單 :控件一行顯示 在<form>元素中添加類名“form-inline” 表單控件select:<select multiple class="form-control"> 選擇多個 textarea: <textarea class="form-control" rows="3"></textarea> radio,checkbox:div包著label包著input
radio,checkbox:水平排列 div(class=”form-group”)包著label(class=”checkbox-inline”or“radio-inline”)包著input 禁用控件:在控件上添加disabled屬性<input class="input-lg" id="disabledInput" type="text" placeholder="表單已被禁用,不可輸入" disabled> 驗證狀態:form-group容器添加has-success等類;若想label同步變色需要在label上加.control-label;顯示icon需要在form-group加.has-feedback,最后加一個span存放icon 表單提示信息:在form-group容器后加一個span,添加類名.help-block button:四種方式,bootstrap用button實現,建議用button和a標簽來制作按鈕 <input type="button"> <input type="reset"> <input type="submit"> <button></button> button樣式.btn .btn-default
大?。?/p> .btn-lg .btn-sm .btn-xs 塊狀按鈕:按鈕充滿整個容器,沒有padding和margin .btn-block 禁用按鈕:添加類.disabled 或者添加屬性disabled=“disabled”
網格系統分為12列,可以嵌套 .col-md-offset-4 .col-md-4 .col-md-push-* .col-md-pull-*
轉自https://www.cnblogs.com/smoothLily/p/4172724.html 作者smoothLily 該文章在 2024/7/19 16:51:23 編輯過 |
關鍵字查詢
相關文章
正在查詢... |