1、CSS的border属性

⑴定义和用法

border 简写属性在一个声明设置所有的边框属性。

可以按顺序设置如下属性:

border-width

border-style

border-color

如果不设置其中的某个值,也不会出问题,比如 border:solid #ff0000; 也是允许的。

描述

border-width

规定边框的宽度。

border-style

规定边框的样式。例如,solid、dashed、dotted、none。

border-color

规定边框的颜色。

  1. width:200px;
  2. height:200px;
  3. border:1px dashed red;

  

⑵分别设置border的上、下、左、右

  1. width:200px;
  2. height:200px;
  3. border-right:1px dashed red;
  4. border-left:1px dashed red;
  5. border-top:1px solid red;
  6. border-bottom:1px dotted red;

  

2、CSS的background属性

⑴背景颜色

  1. background-color:#0000FF;

  

⑵背景图片

  1. background-image:url("../image/clear.png");

  

⑶背景图片重复

  1. background-repeat:repeat;/*默认值*/

  

  1. background-repeat:repeat-x;

  

  1. background-repeat:repeat-y;

  

  1. background-repeat:no-repeat;

  

⑷背景图片位置

  1. background-position:50px 100px;

  

⑸拉伸背景图片

  1. background-repeat:no-repeat;
  2. background-size:cover;

  

⑹背景图片固定

  1. body
  2. {
  3. background-image:url("../image/clear.png");
  4. background-repeat:no-repeat;
  5. background-attachment:fixed;
  6. }

  

3、表格样式

⑴表格的标题

  1. <table border=“1”>
  2. <caption>2004~2007年度收入</caption>
  3. <tr><th>2004</th><th>2005</th><th>2006</th><th>2007</th></tr>
  4. <tr><td>1234</td><td>2345</td><td>3456</td><td>4567</td></tr>
  5. </table>

  

  1. table
  2. {
  3. caption-side:bottom;
  4. }

  

⑵表格的边框

  1. table
  2. {
  3. border:1px solid red;
  4. }

  

⑶边框重叠

  1. th,td
  2. {
  3. border:1px solid red;
  4. }

  

  1. th,td
  2. {
  3. border:1px solid red;
  4. }
  5.  
  6. table
  7. {
  8. border-collapse:collapse;
  9. }

  

⑷行的表头、列的表头

  1. th scope="col"
  2. th scope="row"

  

示例代码:

  1. <table summary="This table shows the yearly income for years 2004 through 2007" border="1">
  2. <caption>年度收入 2004 - 2007</caption>
  3. <tr>
  4. <th></th>
  5. <th scope="col">2004</th>
  6. <th scope="col">2005</th>
  7. <th scope="col">2006</th>
  8. <th scope="col">2007</th>
  9. </tr>
  10. <tr>
  11. <th scope="row">拨款</th>
  12. <td>11,980</td>
  13. <td>12,650</td>
  14. <td>9,700</td>
  15. <td>10,600</td>
  16. </tr>
  17. <tr>
  18. <th scope="row">捐款</th>
  19. <td>4,780</td>
  20. <td>4,989</td>
  21. <td>6,700</td>
  22. <td>6,590</td>
  23. </tr>
  24. <tr>
  25. <th scope="row">投资</th>
  26. <td>8,000</td>
  27. <td>8,100</td>
  28. <td>8,760</td>
  29. <td>8,490</td>
  30. </tr>
  31. <tr>
  32. <th scope="row">募捐</th>
  33. <td>3,200</td>
  34. <td>3,120</td>
  35. <td>3,700</td>
  36. <td>4,210</td>
  37. </tr>
  38. <tr>
  39. <th scope="row">销售</th>
  40. <td>28,400</td>
  41. <td>27,100</td>
  42. <td>27,950</td>
  43. <td>29,050</td>
  44. </tr>
  45. <tr>
  46. <th scope="row">杂费</th>
  47. <td>2,100</td>
  48. <td>1,900</td>
  49. <td>1,300</td>
  50. <td>1,760</td>
  51. </tr>
  52. <tr>
  53. <th scope="row">总计</th>
  54. <td>58,460</td>
  55. <td>57,859</td>
  56. <td>58,110</td>
  57. <td>60,700</td>
  58. </tr>
  59. </table>

  

4、超链接

⑴去掉超链接的下划线

  1. a
  2. {
  3. text-decoration:none;
  4. }

  

⑵效果

  1. a:link
  2. {
  3. color:red;/*未访问时的颜色*/
  4. }
  5.  
  6. a:visited
  7. {
  8. color:green;/*已经访问过的颜色*/
  9. }
  10.  
  11. a:hover
  12. {
  13. color:blue;/*鼠标悬停的颜色*/
  14. cursor:pointer;
  15. }
  16.  
  17. a:active
  18. {
  19. color:orange;/*鼠标点击时的颜色*/
  20. }

  

5、CSS的 overflow 属性

所有主流浏览器都支持 overflow 属性。overflow 属性规定当内容溢出元素框时发生的事情。

描述

visible

默认值。内容不会被修剪,会呈现在元素框之外。

hidden

内容会被修剪,并且其余内容是不可见的。

scroll

内容会被修剪,但是浏览器会显示滚动条以便查看其余的内容。

auto

如果内容被修剪,则浏览器会显示滚动条以便查看其余的内容。

6、一个工具

FireFox浏览器的插件Firebug

2015-09-22CSS:border、background、表格、超链接、overflow、firebug的更多相关文章

  1. http://browniefed.com/blog/2015/09/10/the-shapes-of-react-native/

    http://browniefed.com/blog/2015/09/10/the-shapes-of-react-native/

  2. HTML 初识 HTML【 整体结构 文字 图片 表格 超链接】

    HTML        超文本标记语言,页面内可以包含图片.链接,甚至音乐.程序等非文字元素.       网页的本质就是超级文本标记语言,万维网是建立在超文本基础之上的.TML 通过标记符号来标记要 ...

  3. HTML+CSS笔记 表格,超链接,图片,表单

    表格 给表格加入CSS样式,添加表格边框 语法: <style type="text/css"> table tr td,th{border:1px solid #00 ...

  4. http://oncenote.com/2015/09/16/Security-2-HTTPS2/ (轉載)

    上一篇<iOS安全系列之一:HTTPS>被CocoaChina转载,还顺便上了下头条: 打造安全的App!iOS安全系列之 HTTPS,但那篇文章只是介绍了比较偏应用的初级知识,对于想要深 ...

  5. 【3-20】html 基本知识/表格/超链接

    一.HTML (一).HTML定义 HTML:是指超文本标记语言,用浏览器打开的文件 超文本标记语言:是指页面内包含文本.图片.视频.音频等元素的计算机编程语言 (二).基本格式: <html& ...

  6. MFC双缓冲绘图(2015.09.24)

    问题引入: 最近在尝试编写贪吃蛇游戏时遇到这么一个问题:当系统以较快频率向窗口发送WM_PAINT消息时,调用OnPaint()函数在窗口中绘制图形就会发生闪烁现象. 问题分析: 当我们把绘图过程放在 ...

  7. Murano Weekly Meeting 2015.09.29

    Meeting time: 2015.September.29th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting s ...

  8. Murano Weekly Meeting 2015.09.22

    Meeting time: 2015.September.22th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting s ...

  9. Murano Weekly Meeting 2015.09.15

    Meeting time: 2015.September.15th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting s ...

  10. Murano Weekly Meeting 2015.09.08

    Meeting time: 2015.September.8th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting su ...

随机推荐

  1. CodeFirst中DB保存时报错:对一个或多个实体的验证失败。

    错误提示如下: 开始以为有字段可能没有添加数据,可是检查了很久,仍然没有任何头绪. 后使用DbEntityValidationException进行调试,问题才得以解决

  2. 【Linux】 诊断工具-strace

    1,别人家的总结: http://www.cnblogs.com/bangerlee/archive/2012/02/20/2356818.html 2,我自己碰到问题: 暂无. 3,使用场景: 程序 ...

  3. 【技术贴】解决前台js传参中文乱码

    方法1: 前台两次编码,后台一次解码.因为getParamet已经自动解了一次了. JavaScript: window.self.location="list.jsp?searchtext ...

  4. SVN简明使用方法 .

    SVN简明使用方法 TortoiseSVN 是 Subversion 版本控制系统的一个免费开源客户端,可以超越时间的管理文件和目录.文件保存在中央版本库,除了能记住文件和目录的每次修改以外,版本库非 ...

  5. CSS中的高度

    https://developer.mozilla.org/en-US/docs/Web/API/element.clientHeight Element.clientHeight是只读属性,以像素为 ...

  6. hg 证书验证失败

    hg clone https://bitbucket.org/pygame/pygame 出现abort: error: _ssl.c:504: error:14090086:SSL routines ...

  7. 3 D. Least Cost Bracket Sequence

    题目大意: 这是一个规则的字符括号序列.一个括号序列是规则的,那么在序列里面插入‘+’ 和 ‘1’ 会得到一个正确的数学表达式. 合法:(())(), (),(()(())) 不合法:)(,((),( ...

  8. cf602B Approximating a Constant Range

    B. Approximating a Constant Range time limit per test 2 seconds memory limit per test 256 megabytes ...

  9. Android开发必知--自定义Toast提示

    开发过Android的童鞋都会遇到一个问题,就是在打印Toast提示时,如果短时间内触发多个提示,就会造成Toast不停的重复出现,直到被触发的Toast全部显示完为止.这虽然不是什么大毛病,但在用户 ...

  10. 考研路茫茫--单词情结 - HDU 2243(AC自动机+矩阵乘法)

    分析:与poj的2778差不多的,求出来所有的情况然后减去不包含的就行了,这次使用了一下kuangbin的那种自动机写法,确实还不错,因为尤是在建立矩阵的时候更加方便.   代码如下: ======= ...