常用到的html页面布局和组件: 自己用
1. 用div当作圆
<div style="border: 1px solid blue;height: 100px; width: 100px; border-radius: 200px">div圆圈</div>
2. 用bootstrap实现的表格: 标题固定,表内容可滚动
CSS: .single-table-wrapper{
height: 85vh;
width: %;
margin-bottom: 0px;
border: 1px solid #ddd;
} .single-table-wrapper tbody{
height: 80vh;
overflow-y:auto;
width: %;
} .single-table-wrapper thead,
.single-table-wrapper tr,
.single-table-wrapper th,
.single-table-wrapper tbody,
.single-table-wrapper tr,
.single-table-wrapper td{
display:block;
} .single-table-wrapper tbody td{
float:left;
} .single-table-wrapper thead tr th{
float:left;
}
HTML:
<div class="single-table-wrapper"> <table class="table table-hover">
<thead>
<tr>
<th class="col-xs-1 col-sm-1 col-mg-1 col-lg-1">序号</th>
<th class="col-xs-1 col-sm-1 col-mg-1 col-lg-1">标题1</th>
<th class="col-xs-1 col-sm-1 col-mg-1 col-lg-1">标题1</th>
<th class="col-xs-1 col-sm-1 col-mg-1 col-lg-1">标题1</th>
<th class="col-xs-2 col-sm-2 col-mg-2 col-lg-2">标题1</th>
<th class="col-xs-1 col-sm-1 col-mg-1 col-lg-1">标题1</th>
<th class="col-xs-1 col-sm-1 col-mg-1 col-lg-1">标题1</th>
<th class="col-xs-1 col-sm-1 col-mg-1 col-lg-1">允许搭乘</th>
<th class="col-xs-1 col-sm-1 col-mg-1 col-lg-1">状态</th>
<th class="col-xs-2 col-sm-2 col-mg-2 col-lg-2">
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="i in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ,13 ,14, 15]">
<td class="col-xs-1 col-sm-1 col-mg-1 col-lg-1"></td>
<td class="col-xs-1 col-sm-1 col-mg-1 col-lg-1"></td>
<td class="col-xs-1 col-sm-1 col-mg-1 col-lg-1"></td>
<td class="col-xs-1 col-sm-1 col-mg-1 col-lg-1"></td>
<td class="col-xs-2 col-sm-2 col-mg-2 col-lg-2"></td>
<td class="col-xs-1 col-sm-1 col-mg-1 col-lg-1"></td>
<td class="col-xs-1 col-sm-1 col-mg-1 col-lg-1"></td>
<td class="col-xs-1 col-sm-1 col-mg-1 col-lg-1"></td>
<td class="col-xs-1 col-sm-1 col-mg-1 col-lg-1"></td>
<td class="col-xs-2 col-sm-2 col-mg-2 col-lg-2">
<a class="btn btn-primary btn-xs">查看</a>
</td>
</tr> </tbody>
</table> </div>
常用到的html页面布局和组件: 自己用的更多相关文章
- 13Flutter页面布局 Wrap组件
/* Flutter页面布局Wrap组件: Wrap可以实现流布局,单行的Wrap跟Row表现几乎一致,单列的Wrap则跟Row表现几乎一致. 但Row与Column都是单行单列的.Wrap则突破了这 ...
- 页面布局 Wrap 组件 和 RaisedButton按钮
一.RaisedButton 定义一个按钮 Flutter 中通过 RaisedButton 定义一个按钮.RaisedButton 里面有很多的参数,只讲简单的进行使用. return Raised ...
- 046——VUE中组件之使用动态组件灵活设置页面布局
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- 11Flutter页面布局 Stack层叠组件 Stack与Align Stack与Positioned实现定位布局
/* Flutter 页面布局 Stack层叠组件: Stack与Align Stack与Positioned实现定位布局: Flutter Stack组件: Stack表示堆得意思,我们可以用Sta ...
- 10Flutter页面布局 Padding Row Column Expanded组件详解:
Padding组件: main.dart import 'package:flutter/material.dart'; import 'res/listData.dart'; /* flutter页 ...
- 【Flutter学习】页面布局之基础布局组件
一,概述 Flutter中拥有30多种预定义的布局widget,常用的有Container.Padding.Center.Flex.Row.Colum.ListView.GridView.按照< ...
- 《React后台管理系统实战 :二》antd左导航:cmd批量创建子/目录、用antd进行页面布局、分离左导航为单独组件、子路由、动态写左导航、css样式相对陷阱
一.admin页面布局及路由创建 0)cmd批量创建目录及子目录 //创建各个目录,及charts和子目录bar md home category product role user charts\b ...
- css书写规范 & 页面布局规范 &常用案例经验总结
CSS 属性书写顺序(重点) 建议遵循以下顺序: 布局定位属性:display / position / float / clear / visibility / overflow(建议 displa ...
- 页面布局常用,让子级div排排坐
画页面的时候经常遇到页面布局的问题,父级div包裹多个子div很常见,代码如下: <div> <div style='width:100px;height: 100px;backgr ...
随机推荐
- ARM架构
ARM架构(过去称作进阶精简指令集机器(Advanced RISC Machine),更早称作Acorn RISC Machine)是一个32位元精简指令集(RISC) 中央处理器(processor ...
- 一句Python,一句R︱pandas模块——高级版data.frame
先学了R,最近刚刚上手python,所以想着将python和R结合起来互相对比来更好理解python.最好就是一句python,对应写一句R. pandas可谓如雷贯耳,数据处理神器. 以下符号: = ...
- GNU C 扩展之__attribute__ 机制简介
在学习linux内核代码及一些开源软件的源码(如:DirectFB),经常可以看到有关__attribute__的相关使用.本文结合自己的学习经历,较为详细的介绍了__attribute__相关语法及 ...
- JUnit4测试出错(一)
log4j:WARN No appenders could be found for logger (org.springframework.test.context.junit4.SpringJUn ...
- ASI通讯协议——ASI2x1
通讯协议--ASI2x1 基本功能描述 计算机或控制器通过以太网口或者RS232接口发出指令,包括查询指令,切换指令等,主机箱中的控制板在收到这些指令之后,将这些数据通过485总线转发给对应的主板,并 ...
- 【html5】html学习笔记1
html5语法规则 1.标签要小写 2.省略标签 如 <tr> <td> <tr><td> 3.属性不加” 如 <div id=div1> ...
- Python中re模块的使用
#table-1 thead,#table-1 tr { border-top-width: 1px; border-top-style: solid; border-top-color: rgb(2 ...
- 反射(C#编程)
反射提供了封装程序集.模块和类型的对象(Type 类型).可以使用反射动态创建类型的实例,将类型绑定到现有对象,或从现有对象获取类型并调用其方法或访问其字段和属性.如果代码中使用了属性,可以利用反射对 ...
- img 标签 访问图片 返回403 forbidden问题
之前在项目里,本地调试的时候,图片src引用了第三方网站的图片资源,导致控制台出现了如下的报错: 403 forbidden,说明了这个网络资源这样获取是被拒绝的,那么通过简单的百度,找到了相关的解决 ...
- 两个map一个reduce(两个输入文件)
两个map,一个map读取一个hdfs文件,map完之后进入一个reduce进行逻辑处理. package com.zhongxin.mr; import org.apache.commons.lan ...