通用table样式】的更多相关文章

<html> <head> <title>通用table样式</title> <style type="text/css"> body, table { font-size: 12px; } table { table-layout: fixed; empty-cells: show; border-collapse: collapse; margin: 0 auto; } td { height: 30px; } h1, h…
上一篇jquery实现checkbox的全选,得到了一些朋友的建议,其中插件的定义我的确不太清楚,也闹了个笑话,有些朋友建议我去看<锋利的Jquery>,说实话正在看了.由于正在学习中,我就想把项目中经常要用的jquery效果自己写成通用方法,可以在大家的帮助下完善这些方法,也可以让不会的了解到一种做法,最后 形成自己的Jquery 方法库,方便以后的使用,这些例子都是我自己写的,没有参考,所以有很多地方需要改进. 1:为什么要写这个方法 在项目中,一些table都要设置样式,为了样式的美观,…
table完美css样式,table的基本样式,table样式 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 蕃薯耀 2016年6月15日 09:04:26 星期三 http://fanshuyao.iteye.com/ 一.table的css样式 边框线不…
两个我经常使用的table样式: <html> <head> <title></title> <style type="text/css"> body,table{ font-size:12px; } table{ table-layout:fixed; empty-cells:show; border-collapse: collapse; margin:0 auto; } td{ height:30px; } h1,h2,…
<table class="listTable"> <tr><th width="40px">序号</th><th width="100px">姓名</th><th width="100">性别</th><th width="40">编辑</th><th width="40…
1.table样式首先设置表格边框,属性设置表格的边框是否被合并为一个单一的边框. table{ border-collapse: collapse; border-spacing: 0;} 2.固定表头 2.1.原理:表头和表身分开,表身设置可滚动table-body{overflow-y:scroll;} 2.2.表头和表身宽度怎么保证一样? 表头和表身td里面包裹div设置相同的class样式,样式指定宽度即可. 3.列的固定(下面截图:前后分别都有固定列)  原理:创建一个div漂浮(d…
效果预览: 代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>html 简单的table样式</title> <style type="text/css"> /* gridtable */ table.gridtable { font-family: verdana,arial,sans-serif; fo…
收藏个好看的table样式 <style type="text/css">table.gridtable { font-family: verdana,arial,sans-serif; font-size:11px; color:#333333; border-width: 1px; border-color: #666666; border-collapse: collapse;}table.gridtable th { border-width: 1px; paddi…
先上代码   <script type="text/javascript" language="javascript">   var idTmr;       function getExplorer() {   var explorer = window.navigator.userAgent;   //ie   if (explorer.indexOf("MSIE") >= 0) {   return 'ie';   }  …
要想让div元素显示的样式与table相同,那么需要使用display属性,这个属性将告诉浏览器这些数据是制表的,将以哪种样式来渲染数据: // table --使该元素按table样式渲染 // table-row --使该元素按tr样式渲染 // table-cell --使该元素按td样式渲染 // table-row-group --使该元素按tbody样式渲染 // table-header-group --使该元素按thead样式渲染 // table-footer-group --…