html中测试div、ul和li、table排列多个块
前面有三篇博文测试了这三种方式,
一.相关博文:LODOP问答部分链接、
该文用的是div定位,用的是所有小div相对于大div进行定位,大的div设置relative定位,小的设置absolute相对于该大的div定位。
测试代码:
<style>
#A1{background:#e1e2e6;height:330px;border-radius:20px;position:relative;}
#A1 div{line-height:50px;text-align:center;border-radius:20px;position:absolute;float:left;}
a{text-decoration:none;font-weight:bold;}
#div1{height:50px;width:100px;top:20px;left:20px;background:rgba(255,0,0,0.5);}
#div1 a{color:black;}
#div2{height:50px;width:120px;top:20px;left:140px;background:rgba(0,255,0,0.5);}
#div2 a{color:blue;}
#div3{height:50px;width:80px;top:20px;left:280px;background:rgba(255,0,0,0.5);}
#div3 a{color:black;}
#div4{height:50px;width:100px;top:20px;left:380px;background:rgba(0,255,0,0.5);}
#div4 a{color:blue;}
#div5{height:50px;width:160px;top:20px;left:500px;background:rgba(255,0,0,0.5);}
#div5 a{color:black;}
#div6{width:200px;height:200px;top:80px;left:20px;background:rgba(0,0,255,0.7);
text-align:justify!important;line-height:25px!important;padding:10px;
}
#div6 a{color:#f797e4;}
.a1{color:black!important;}
</style>
</head>
<body>
<p>点击链接进入相关简短问答博文:</p>
<div id="A1">
<div id="div1"><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9790615.html">问答大全</a></div>
<div id="div2"><a target="_blank" href="https://www.cnblogs.com/huaxie/p/11301778.html">纸张打印机</a></div>
<div id="div3"><a target="_blank" href="https://www.cnblogs.com/huaxie/p/10860746.html">注册</a></div>
<div id="div4"><a target="_blank" href="https://www.cnblogs.com/huaxie/p/11045192.html">table表格</a></div>
<div id="div5"><a target="_blank" href="https://www.cnblogs.com/huaxie/p/11550645.html">clodop测试地址</a></div>
<div id="div6">
<a target="_blank" href="https://www.cnblogs.com/huaxie/p/11840694.html">字体</a><br>
<a target="_blank" href="https://www.cnblogs.com/huaxie/p/11890022.html">行间距、字间距</a><br>
<a target="_blank" href="https://www.cnblogs.com/huaxie/p/11736705.html">clodop回调函数</a><br>
<a target="_blank" href="https://www.cnblogs.com/huaxie/p/11683913.html">SET_PRINT_STYLEA</a><br>
<a target="_blank" href="https://www.cnblogs.com/huaxie/p/9603229.html">页眉页脚</a><br>
<a class="a1" target="_blank" href="https://www.cnblogs.com/huaxie/p/10082571.html">超文本</a><br>
<a target="_blank" href="https://www.cnblogs.com/huaxie/p/11038280.html">条码</a><br>
</div>
</div>
二.相关博文:常见问答的点击到链接1、
该文用的是ul和li,一个div里盛放了一个ul,对ul里的li进行设置。该代码也就是相关博文三里的上半部分。
三.相关博文:LODOP常见问题连接(含常见小问答博文)下半部分(粉色的那些区块)、
该文下边部分用的是table,通过设置td的间距实现排列多个区块。这里实际没有设置边距,用的是给td加了白色的border,由于文章页面本身是白色,白色的border就和边距差不多。 上半部分就是相关博文2里的内容。
二和三的,测试代码:
<style>
#divall ul{list-style-type:none;margin:0px;}
#divall li{float:left;display:block;width:100px;height:50px;background:gray;margin-left:10px;margin-top:10px;text-align:center;}
#divall p{margin:0px;}
#divall a{text-decoration:none;font-weight:bold;}
.clearFloat{clear:both;} .fs20{font-size:20px;line-height:50px;}
.fs15{font-size:15px;line-height:50px;}
.fs12{font-size:12px;line-height:50px;}
#divall .corWhi{color:white!important;}
#divall .corYel{color:yellow!important;}
#divall .bgblue{background:blue!important;}
#divall .bg_dpblue{background:#2a4278!important;} #div_table{clear:both;margin-left:0px;}
#div_table table{border-collapse:collapse;}
#div_table td{width:100px;height:50px;background:#f1c7c7;text-align:center;line-height:50px;border:10px solid white;padding:0px!important;}
#div_table a{text-decoration:none;font-weight:bold;color:blue;font-family:楷体;}
</style>
<div id="divall">
<ul>
<!--第一排-->
<li class="fs20"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/9790615.html">问答大全</a></li>
<li class="fs15"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11301778.html">纸张打印机</a></li>
<li class="fs20"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/10860746.html">注册</a></li>
<li class="fs20"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11045192.html">table表格</a></li>
<!--第二排-->
<li class="fs12 clearFloat"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/11550645.html">clodop测试地址</a></li>
<li class="fs20"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11840694.html">字体</a></li>
<li class="fs20"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/10082571.html">超文本</a></li>
<li class="fs12"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11890022.html">行间距、字间距</a></li>
<!--第三排-->
<li class="fs12 clearFloat"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11736705.html">clodop回调函数</a></li>
<li class="fs20"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11038280.html">条码</a></li>
<li class="fs20"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/9603229.html">页眉页脚</a></li>
<li class="fs12"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/11683913.html">SET……STYLEA</a></li>
<!--第四排-->
<li class="fs20 clearFloat"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11988181.html">水平居中</a></li>
<li class="fs20 bg_dpblue"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/10132472.html">简短排查</a></li>
<li class="fs20 bg_dpblue"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/10265673.html">提示报错</a></li>
<li class="fs20"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11381365.html">慢进度条</a></li>
<!--第五排-->
<li class="fs20 clearFloat"><a class="corYel" target="_blank" href="https://www.cnblogs.com/huaxie/p/11532205.html">套打</a></li>
<li class="fs15"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/11364736.html">虚拟打印机</a></li>
<li class="fs20"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/11248349.html">偶尔出现</a></li>
<li class="fs15"><a class="corWhi" target="_blank" href="https://www.cnblogs.com/huaxie/p/9933528.html">反馈排查等</a></li>
</ul>
</div> <div id="div_table">
<table>
<tr>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/11248349.html">clodop端口</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9619044.html">打印第几页</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9639085.html">使用lodop</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9640491.html">高度自动分页</a></td>
</tr>
<tr>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9669963.html">传入查看样式</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9679314.html">条码宽度不一</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9679459.html">二维码大小同</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9700435.html">页码</a></td>
</tr>
<tr>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9705241.html">可重选</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9705355.html">lodop或c</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9707548.html">inita与page</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9707717.html">设计快捷键</a></td>
</tr>
<tr>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9707880.html">c#调用lodop</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9708182.html">打印透明图</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9708290.html">隐藏窗口按钮</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9711631.html">打印虚线</a></td>
</tr>
<tr>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9712832.html">打印直线</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9717172.html">护眼色</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9732406.html">打印项层级</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9810583.html">任务基本结构</a></td>
</tr>
<tr>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9947181.html">允许标点溢出</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9946940.html">卸载lodop</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/9952308.html">连续纸高</a></td>
<td><a target="_blank" href="https://www.cnblogs.com/huaxie/p/10537362.html">条码右侧数值</a></td>
</tr>
</table>
</div>
总图示:

html中测试div、ul和li、table排列多个块的更多相关文章
- 解决ul的li横向排列换行的问题
1. 问题现象 先看下面的html结构: <div> <ul> <li><img src='./img/1.jpg'></li> <l ...
- CSS中如何选择ul下li的奇数、偶数行
<style> #Ulist li:nth-of-type(odd){ margin-left: 20px;}奇数行 #Ulist li:nth-of-type(even){margin- ...
- DIV+CSS中标签ul ol li dl dt dd用法
ul ol li dl dt dd都是DIV+CSS做网页长用的东西,相当于一棵树的树技,下面就了解一下这些东西的全体用法,本人用dd,dt,dd用得很少,懂得结合使用对做架构是很有好处的哦! DIV ...
- ul、li中的DIV垂直居中
当li高度可动态改变时,li中的DIV始终保持垂直居中. 由于高度不固定,不能用margin或者padding解决. 最头疼的是vertical-align: middle;也莫名其妙的失效了. 最终 ...
- div、ul、li等无法居中问题,text-align无效 margin auto无效
很简单.如果是div,直接把div换成: <table align="center"> <tr> <td> ...
- DIV+ul+LI实现表格效果以及div带滑动条
写这个是为了给自己一个好好的笔记,以免下次需要的时候又到处找,费神费事费时费力.开始吧! 1.先看看效果 2.网页代码 <!DOCTYPE html PUBLIC "-//W3C//D ...
- jquery 在ul中取得第一级的li
在ul中取得第一级的li <div id='demo1'> <ul> <li id='1'>1<li> <li id='2'>2<li ...
- CSS中的ul与li样式详解
CSS中的ul与li样式详解ul和li列表是使用CSS布局页面时常用的元素.在CSS中,有专门控制列表表现的属性,常用的有list-style-type属性.list-style-image属性.li ...
- 基于DIV+ul+li实现的表格(多示例)
一个无序列表biaoge,前四个列表项我们赋予了类biaotou.因为这四个项是表格头部,应该与表格数据有所区别.所以单独赋予了类,可以方便控制.下面我们开始CSS代码的编写:由 www.169it. ...
随机推荐
- Mysql一些常见语句
Mysql一些常见语句 (1)展示所有的数据库名 SHOW DATABASES (2)选中某一个数据库 USE 数据库名字 (3)查看某一个表的结构 DESC 表名 (4)数据库的创建 CREATE ...
- HDU-1848-Fibonacci again and again(SG函数,博弈)
链接: http://acm.hdu.edu.cn/showproblem.php?pid=1848 题意: 任何一个大学生对菲波那契数列(Fibonacci numbers)应该都不会陌生,它是这样 ...
- fpm 打包跨平台rpm 包的一个问题
平时我们开发机器可能使用的是mac 系统,但是部署机器kennel是linux,默认会有一个操作系统的问题, 我们可以在打包的时候指定os版本信息 参考 --rpm-os linux 参考例子 一个构 ...
- bzoj 1260涂色 题解
题面 区间dp, 我学的也不怎么好. myj说动态规划就是搜索的无限剪枝. 所以是搜了网上的代码, 看了看. 思路就是枚举区间,f数组就是存储从i到j需要的最少次数, 当然一开始他们的值要先设置一个很 ...
- [图形计算器]Desmos
一.图形计算器 var elt = document.getElementById('calculator'); var calculator = Desmos.GraphingCalculator( ...
- linux 所有命令无法使用
配置nginx时,错误export之后linux 所有命令无法使用 出现这个问题是因为系统的环境变量没有正确配置造成的,造成这个原因有很多,比如系统升级,比如不正当操作等导致环境变量被覆盖修改,解决的 ...
- nginx.conf 配置解析之 http配置
官方文档 http://nginx.org/en/docs/参考链接: https://segmentfault.com/a/1190000012672431参考链接: https://segment ...
- java项目里classpath具体指哪儿个路径
一.classpath路径指什么 只知道把配置文件如:mybatis.xml.spring-web.xml.applicationContext.xml等放到src目录(就是存放代码.java文件的目 ...
- Shell字符串截取(非常详细)
假设有变量 var=http://www.aaa.com/123.htm. 1. # 号截取,删除左边字符,保留右边字符. 1 echo ${var#*//} 其中 var 是变量名,# 号是运算符, ...
- 区间DP复习
区间DP复习 (难度排序:(A,B),(F,G,E,D,H,I,K),(C),(J,L)) 这是一个基本全在bzoj上的复习专题 没有什么可以说的,都是一些基本的dp思想 A [BZOJ1996] [ ...