HTML與CSS常用代碼

來源:互聯網
上載者:User
  1. =======HTML常用代碼=======
  2. ------圖象和文字的對齊------
  3.     <img src="URL" align="#"> #=top上, middle中, bottom下。
  4. ------圖象在頁面中的對齊/布局-------
  5.     <img src=URL align="#">#=left左,right右。這裡表示文字在圖片下面。<img src=URL align=left vspace=10 hspace=20>vspace與hspace表示距離。
  6. ------表格 ,跨多列的表元----------
  7.     <td colspan=#> #=列的數目 跨多行的表元 :<th rowspan=#> #=行的數目。
  8. -------表格的標題---------------
  9.      <caption align=#>內容 </caption> #=left左, center中, right右。
  10.      <aption valign=#>內容</caption> #=top, bottom,表示標題在表格下面。
  11. --------背景音樂-------------
  12.      <bgsound src="168.mid" loop="5"> #=WAV 檔案的 URL。#=填數字,如果填-1,表示一直播放。
  13. ---------會移動的文字------------
  14. 方向:direction=#  #=left左, right右。<marquee direction=left>右向左移</marquee>,<marquee direction=right>左向右移</marquee>。
  15. 方式: bihavior=#   #=scroll, slide, alternate。<marquee behavior=scroll>一圈一圈繞著走</marquee>,<marquee behavior=slide>只走一次就歇了</marquee>,<marquee behavior=alternate>我來回走耶</marquee>。
  16. 帶顏色背景,滑鼠經過文字停住:<marquee bgcolor=aaaaee>啦啦啦,我會移動耶!</marquee>
  17. 空白:hspace=# vspace=#  #=數字。示範:<marquee hspace=20 vspace=20 width=150 bgcolor=ffaaaa align=center>啦啦啦,我會移動耶!</marquee>大家好!
  18. ==========CSS常用代碼===========
  19. 字型顏色 : color : #00903A;
  20. 背景顏色 : background-color : #7CFFE7;
  21. --------------------------------------------------------------------------------
  22. 邊框寬度 : border-width : 5px;
  23. 上邊寬度 : border-top-width : 5px;
  24. 左邊寬度 : border-left-width : 5px;
  25. 右邊寬度 : border-right-width : 5px;
  26. 底邊寬度 : border-bottom-width : 5px;
  27. --------------------------------------------------------------------------------
  28. 邊框顏色 : border-color : #000FF4;
  29. 上邊顏色 : border-top-color : #10FF01;
  30. 左邊顏色 : border-left-color : #FF3B04;
  31. 右邊顏色 : border-right-color : #FF3CF3;
  32. 底邊顏色 : border-bottom-color : #00D0C3;
  33. --------------------------------------------------------------------------------
  34. 邊框樣式 : border-style : double; 可替換 dashed; dotted; none;  
  35. 上邊樣式 : border-top-style : solid;   
  36. 左邊樣式 : border-left-style : inset;
  37. 右邊樣式 : border-right-style : ridge;   
  38. 底邊樣式 : border-bottom-style : solid;   
  39. --------------------------------------------------------------------------------
  40. 整體寬度 : width : 5px;  
  41. 整體高度 : height : 5px;  
  42. 溢出選項 : overflow : visible;  可替換 hidden; scroll; auto;
  43. --------------------------------------------------------------------------------
  44. 內側邊距 : padding : 5px;   
  45. 上內邊距 : padding-top : 5px;  
  46. 左內邊距 : padding-left : 5px;  
  47. 右內邊距 : padding-right : 5px;  
  48. 底內邊距 : padding-bottom : 5px;  
  49. --------------------------------------------------------------------------------
  50. 外側邊距 : margin : 5px;   
  51. 上外邊距 : margin-top : 5px;   
  52. 左外邊距 : margin-left : 5px;   
  53. 右外邊距 : margin-right : 5px;   
  54. 底外邊距 : margin-bottom : 5px;   
  55. --------------------------------------------------------------------------------
  56. 文字字型 : font-family : fantasy;   
  57. 文字大小 : font-size : 12pt;   
  58. 文字粗細 : font-weight : bold;
  59.                 font-weight的值有normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
  60. 文字樣式 : font-style : italic;   
  61. 文字變數 : line-height : 110%;      
  62. --------------------------------------------------------------------------------
  63. 清除屬性 : clear : left;  可替換 right;  both;  none;
  64. 浮動屬性 : float : left;  可替換 right;  none;
  65. 水平排列 : text-align : left; 可替換  right;  center;  justify;
  66. 文本修飾 : text-decoration : underline;  可替換  overline;  underline overline;  line-through;  blink;
  67. 文本縮排 : text-indent : 5em;   
  68. 文字間距 : letter-spacing : 5px;   
  69. 字母間距 : word-spacing : 5px;   
  70. 文本轉換 : text-transform : capitalize;  可替換  lowercase;  uppercase;  
  71. 垂直排列 : vertical-align : baseline;    可替換  top; middle; bottom; text-top; text-bottom; super; sub; 3em; 30%;  
  72. --------------------------------------------------------------------------------
  73. 背景圖片 : background-image : url(tianyi.gif);   
  74. 背景展開 : background-repeat : repeat;   可替換   repeat-x; repeat-y; no-repeat;  
  75. 背景定位 : background-position : left;   可替換   right; top; left top; right bottom; 30% 50%;
  76. 附加屬性 : background-attachment : fixed; 可替換  scroll;   
  77. --------------------------------------------------------------------------------
  78. 顯示內容 : display : none; 可替換  block; inline; run-in; compact; list-item; marker;   
  79. 是否可見 : visibility : visible; 可替換  hidden;   
  80. 資源定位 : position : static;  可替換  relative; absolute; fixed;  
  81. 距離頂部 : top : 5px;
  82. 距離左邊 : left : 5px;  
  83. 距離右邊 : right : 5px;   
  84. 距離底邊 : bottom : 5px;   
  85. 優先等級 : z-index : 5;
  86. 滑鼠指標 : cursor : crosshair; 可替換  default; pointer; move; text; wait; help; n-resize; s-resize; w-resize; e-resize; ne-resize; nw-resize; se-resize; sw-resize;
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.