[Bootstrap] 2. class 'row' & 'col-md-x' & 'col-md-offset-x'

Usually when desgin a web page, we think building the page in grid.

Bootstrap can help us to do that.

It divides the page into 12 cols. In the picture, there are three rows, on the top is header (it takes 12 cols), in the middle there is two cols, in the bottom, there are three cols.

You can finish this work quickly by using ‘col-md-x‘ class: it should sum up to 12 for each row.

To organize the code structure better, you can but add ‘row‘ class:

If one row exceeds 12 cols, the page layout would broken.

If you want to add more padding:

You can use ‘col-md-offest-x‘ class:

Result:

[Bootstrap] 2. class 'row' & 'col-md-x' & 'col-md-offset-x'

时间: 2024-10-20 16:27:01

[Bootstrap] 2. class 'row' & 'col-md-x' & 'col-md-offset-x'的相关文章

gnuplot conditional plotting: plot col A:col B if col C == x

http://stackoverflow.com/questions/6564561/gnuplot-conditional-plotting-plot-col-acol-b-if-col-c-x How can I do this in gnuplot: plot "test.csv" using 1:2 if value_in_column_3 == 80.0 It should only select those rows where column 3 == 80.0 and i

在表格中,th scope="row"和th scope="col"中的scope属性的用法及意义

把表头和数据联系起来:scope,id,headers属性就我用到现在,很多表格要比上面提供的例子复杂的多.让例子复杂一点,我会移去"Company"表头,并且把第一列的数据移到表头单元格里: <table summary="The number of employees and the foundation year of some imaginary companies."> <caption>Table 1: Company data&

mavon-editor 存储md文件以及md文件解析成html文件

一.md文件的存储 因为是vue-cli项目,所以使用的是mavonEditor. github地址:https://github.com/hinesboy/mavonEditor 使用方法: 首先安装: npm install mavon-editor --save 然后在相应的组件里引用: //引入import {mavonEditor} from 'mavon-editor' import 'mavon-editor/dist/css/index.css' //标签使用,注意这里是mavo

col标签的相关实验

col上有width属性,如果对应值没有单位,默认是像素 <!DOCTYPE html> <html> <head> <title>col相关实验</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="X-UA-Compatible" c

【Linux】字符转换命令col

[[email protected] ~]# col [-xb] 选项与参数: -x :将 tab 键转换成对等的空格键 -b :过滤掉所有的控制字符,包括RLF(Reverse Line Feed)和HRF(Halt RLF) 范例一:利用 cat -A 显示出所有特殊按键,最后以 col 将 [tab] 转成空白 [[email protected] ~]# cat -A /etc/man.config <==此时会看到很多 ^I 的符号,那就是 tab [[email protected]

【pwnable.kr】col

pwnable从入门到放弃第二题, ssh [email protected] -p2222 (pw:guest) 同样是登录,然后看到了col.c.col.flag三个文件,读一下col.c #include <stdio.h> #include <string.h> unsigned long hashcode = 0x21DD09EC; unsigned long check_password(const char* p){ int* ip = (int*)p; int i;

SQL Server中count(*), count(col), count(1)的对比

让我们先看一下BOL里面对count(*)以及count(col)的说明: COUNT(*) 返回组中的项数.包括 NULL 值和重复项. COUNT(ALL expression) 对组中的每一行都计算 expression 并返回非空值的数量. expression 除 text.image 或 ntext 以外任何类型的表达式.不允许使用聚合函数和子查询. * 指定应该计算所有行以返回表中行的总数.COUNT(*) 不需要任何参数,而且不能与 DISTINCT 一起使用. COUNT(*)

Linux管线命令 - cut,grep,sort,uniq,wc,tee,tr,col,join,paste,expand,split,xargs

在每个管线后面接的第一个数据必定是『命令』喔!而且这个命令必须要能够接受 standard input 的数据才行,这样的命令才可以是为『管线命令』,例如 less, more, head, tail 等都是可以接受 standard input 的管线命令啦.至于例如 ls, cp, mv 等就不是管线命令了!因为 ls, cp, mv 并不会接受来自 stdin 的数据. 也就是说,管线命令主要有两个比较需要注意的地方: 管线命令仅会处理 standard output,对于 standar

Linux col命令详解

Linux col命令 Linux col命令用于过滤控制字符. 在许多UNIX说明文件里,都有RLF控制字符.当我们运用shell特殊字符">"和">>",把说明文件的内容输出成纯文本文件时,控制字符会变成乱码,col指令则能有效滤除这些控制字符. 用法 col [-bfpx] [-l nline] 参数 -b 过滤掉所有的控制字符,包括RLF和HRLF. -f 滤除RLF字符,但允许将HRLF字符呈现出来. -x 将 tab 键转换成对等的空格