Blogger Information
Blog 15
fans 0
comment 0
visits 12619
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
bordercss input表单
峰回掠影的博客
Original
700 people have browsed it

背景色    (单词、16进制、rgb颜色)

 background:linear-gradient( to right,red,blue) 线性渐变

background  no-repeat  不平铺

background: url(img/p2.jpg) -100px 0; 

border  宽度  样式   颜色 (border: 1px solid red;)

左右上下border效果(border-left: ; border-right:; border-top: ;border-bottom: ;)

阴影  box-shadow

圆角  border-radius  (做圆形 正方形的半径  width   herght 的一半)

右上角 圆角  border-top-right-radius

border-top-right-radius

行列  table   tr  td 

<table>
   <tr  >
  <td rowspan='4'>都市速度</td>
  
   </tr>
      <tr>
  <td>都市速度</td>
  <td>都市速度</td>
  <td>都市速度</td>
  <td>都市速度</td>
   </tr>
      <tr>
  <td>都市速度</td>
  <td>都市速度</td>
  <td>都市速度</td>
  <td>都市速度</td>
   </tr>
      <tr>
  <td>都市速度</td>
  <td>都市速度</td>
  <td>都市速度</td>
  <td>都市速度</td>
   </tr>
  
</table>

border-collapse: collapse;/*折叠边框*/

border-collapse: collapse;/*折叠边框*/

colspan 行合并

<td colspan="4">都市速度</td>

表单  from  (action 提交的地址) method  post  get 

input    text文本  password 密码  radio单项

   <form action="" method="post">
  用户名:<input type="text" name="">
  密码  :<input type="password" name="">
  单休
  <input type="radio" name="">男
  <input type="radio" name="">女
  多选框
  <input type="checkbox" name="">java
  <input type="checkbox" name="">c++ 
  文本域
  <textarea></textarea>
  提交
  <input type="submit" name="" value="提交">
  <input type="button" name="" value="搜索">
  <button>提交</button>
   </form>

 




Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post