主頁(yè) > 知識(shí)庫(kù) > 淺談html5標(biāo)簽css3的常用樣式

淺談html5標(biāo)簽css3的常用樣式

熱門(mén)標(biāo)簽:電視購(gòu)物電銷(xiāo)外呼系統(tǒng) 電話(huà)機(jī)器人如何 高德地圖標(biāo)注賓館位置 飛亞外呼系統(tǒng) 貸款電銷(xiāo)人工和機(jī)器人哪個(gè)好 杭州營(yíng)銷(xiāo)電銷(xiāo)機(jī)器人供應(yīng)商 西寧智能外呼系統(tǒng)加盟 百應(yīng)電銷(xiāo)機(jī)器人產(chǎn)業(yè) 聯(lián)通400電話(huà)申請(qǐng)

<meta name=''>

name:有如下6個(gè)值:
application-name:文檔名或者應(yīng)用名,整個(gè)文檔只能包含一個(gè)值。
author:文檔作者
description:文檔描述
generator:生成文檔的程序。
keywords:網(wǎng)頁(yè)關(guān)鍵字,用英文逗號(hào)分隔。


<a href="https://www.jb51.net">腳本之家</a>

href:路徑
<img src="../img/a.jpg" alt="此圖無(wú)法顯示" border="1px solid red" width="400" height="250"/>
src:圖片路徑

<table>標(biāo)簽的屬性
Border 邊框
Cellspacing 表格外邊距
Cellpadding 表格內(nèi)邊距
Align  位置
Bgcolor:背景色
Background:背景圖片
Bordercolor:邊框顏色

table中 <tr></tr>

<td colspan="2"></td>  colspan 跨2列

        rowspan  跨  行

<input type="">

 type值

text  文本

password 密碼

radio 單選

checkbox 多選

reset 重置

file 文件上傳

submit 提交表單

image 圖形提交

button 普通按鈕

分組下拉

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <select name="city" id="city">  
  2.     <optgroup label="山東">  
  3.         <option value="yt">煙臺(tái)</option>  
  4.         <option value="qd">青島</option>  
  5.         <option value="wh">威海</option>  
  6.     </optgroup>  
  7.     <optgroup label="北京">  
  8.         <option value="bj">bj</option>  
  9.         <option value="tam">tam</option>  
  10.         <option value="zong">zong</option>  
  11.     </optgroup>  
  12. </select>  
文字區(qū)域textarea
XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <textarea name="textarea" id="textarea" cols="30" rows="10" readonly="readonly"  
  2.         disabled="disabled">  
  3.     1</textarea>  


cols 寬度 rows 高度  readonly 只讀

css樣式
字體、字號(hào):
font(縮寫(xiě)形式)
font-weight(粗細(xì)) 正常(normal) 粗體(bold) 斜體(italic)
font-size(大?。?
font-family(字體系列)
font-style(字體樣式)

字體顏色:
color
opacity (透明度 css3)

行距、對(duì)齊等:
line-height (行高)
text-align (對(duì)齊)
letter-spacing (字符間距)
text-decoration (文本修飾 )
overflow  超出的部分隱藏
text-overflow

text-overflow文本裁剪  clip裁剪文本時(shí)不添加...  ellipsis 裁剪時(shí)加...  注意:不換行和over-flow控制

text-shadow 陰影
text-indent

背景屬性:
background (縮寫(xiě)形式)
background-color(背景色 )
background-image(背景圖 )
background-repeat(背景圖重復(fù)方式 )
background-position(位置坐標(biāo)、偏移量)


列表常用

list-style: none無(wú)風(fēng)格 disc實(shí)心圓 circle空心圓 square 實(shí)心正方形 decimal 數(shù)字

盒子屬性:
margin(外邊距/邊界)    以上方為主 可寫(xiě)1、2、4個(gè)值
border(邊框)
padding(內(nèi)邊距/填充 )

后可加 -top 等方向

border-radius 邊框圓角

box-shadow  陰影

變形效果:transform

transform-origin 指定變換的起點(diǎn)

none無(wú)變換

translate(長(zhǎng)度值或百分比) translateX translateY 在水平、垂直方向平移

scale(數(shù)值)scaleX scaleY 在水平方向、垂直方向或兩個(gè)方向上縮放

rotate(角度)旋轉(zhuǎn)元素

skew(角度)skewX skewY  在水平方向、垂直方向或兩個(gè)方向上使元素傾斜一定的角度

matrix 自定義

過(guò)渡效果:transition

transition-property 指定過(guò)渡的css屬性 默認(rèn)值 all

transition-duration 完成過(guò)渡的時(shí)間

transition-timing-function 指定過(guò)渡函數(shù)  緩動(dòng)效果默認(rèn)值ease 等同于(0.25, 0.1, 0.25, 1.0)

transition-delay 指定過(guò)渡開(kāi)始出現(xiàn)的延遲時(shí)間

@keyframes:定義一個(gè)動(dòng)畫(huà)

animation

CSS Code復(fù)制內(nèi)容到剪貼板
  1. <style>             
  2.   .t5{   
  3.             transition: 5s ease-out all;   /*過(guò)渡   ease    in 加速   out減速*/  
  4.         }/*transition-delay延遲*/  
  5.         .t5:hover{   
  6.   
  7.             transform: skew(45deg,45deg)   
  8.         }   
  9.         @keyframes key {   
  10.             0%{   
  11.                 background-colorred;width200px;height200px;   
  12.             }   
  13.             25%{   
  14.                 background-color: orange;width100px;height100px;transform: rotate(-90deg);   
  15.             }   
  16.             50%{   
  17.                 background-coloryellow;width60px;height60px;transform: none;   
  18.             }   
  19.             75%{   
  20.                 background-colorgreen;width120px;height120px;transform: none;   
  21.             }   
  22.             100%{   
  23.                 background-colorblue;width200px;height200px;transform: rotate(360deg);   
  24.             }   
  25.         }   
  26.         .kt{   
  27.             animation:key 1s;   
  28.            /* animation-iteration-count: infinite;*//*無(wú)限循環(huán)*/  
  29.             background-coloryellow;   
  30.             width200px;height200px;   
  31.   
  32.         }   
  33.   
  34.  </style>   
  35.   
  36. <div class="kt t5"></div>  

以上就是小編為大家?guī)?lái)的淺談html5標(biāo)簽css3的常用樣式全部?jī)?nèi)容了,希望大家多多支持腳本之家~

標(biāo)簽:撫州 邯鄲 內(nèi)蒙古 煙臺(tái) 晉中 玉溪 牡丹江 安慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《淺談html5標(biāo)簽css3的常用樣式》,本文關(guān)鍵詞  淺談,html5,標(biāo)簽,css3,的,常用,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《淺談html5標(biāo)簽css3的常用樣式》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于淺談html5標(biāo)簽css3的常用樣式的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章