91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

html5標簽css3的常用樣式有哪些

發布時間:2022-03-02 16:04:26 來源:億速云 閱讀:299 作者:iii 欄目:web開發

這篇“html5標簽css3的常用樣式有哪些”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“html5標簽css3的常用樣式有哪些”文章吧。

<meta name=''>

name:有如下6個值:

application-name:文檔名或者應用名,整個文檔只能包含一個值。

author:文檔作者

description:文檔描述

generator:生成文檔的程序。

keywords:網頁關鍵字,用英文逗號分隔。

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

href:路徑

<img src="../img/a.jpg" alt="此圖無法顯示" border="1px solid red" width="400" height="250"/>

src:圖片路徑

<table>標簽的屬性

Border 邊框

Cellspacing 表格外邊距

Cellpadding 表格內邊距

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復制內容到剪貼板

<select name="city" id="city">  

    <optgroup label="山東">  

        <option value="yt">煙臺</option>  

        <option value="qd">青島</option>  

        <option value="wh">威海</option>  

    </optgroup>  

    <optgroup label="北京">  

        <option value="bj">bj</option>  

        <option value="tam">tam</option>  

        <option value="zong">zong</option>  

    </optgroup>  

</select>  

文字區域textarea

XML/HTML Code復制內容到剪貼板

<textarea name="textarea" id="textarea" cols="30" rows="10" readonly="readonly"  

        disabled="disabled">  

    1</textarea>  

cols 寬度 rows 高度  readonly 只讀

css樣式

字體、字號:

font(縮寫形式)

font-weight(粗細) 正常(normal) 粗體(bold) 斜體(italic)

font-size(大小)

font-family(字體系列)

font-style(字體樣式)

字體顏色:

color

opacity (透明度 css3)

行距、對齊等:

line-height (行高)

text-align (對齊)

letter-spacing (字符間距)

text-decoration (文本修飾 )

overflow  超出的部分隱藏

text-overflow

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

text-shadow 陰影

text-indent

背景屬性:

background (縮寫形式)

background-color(背景色 )

background-image(背景圖 )

background-repeat(背景圖重復方式 )

background-position(位置坐標、偏移量)

列表常用

list-style: none無風格 disc實心圓 circle空心圓 square 實心正方形 decimal 數字

盒子屬性:

margin(外邊距/邊界)    以上方為主 可寫1、2、4個值

border(邊框)

padding(內邊距/填充 )

后可加 -top 等方向

border-radius 邊框圓角

box-shadow  陰影

變形效果:transform

transform-origin 指定變換的起點

none無變換

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

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

rotate(角度)旋轉元素

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

matrix 自定義

過渡效果:transition

transition-property 指定過渡的css屬性 默認值 all

transition-duration 完成過渡的時間

transition-timing-function 指定過渡函數  緩動效果默認值ease 等同于(0.25, 0.1, 0.25, 1.0)

transition-delay 指定過渡開始出現的延遲時間

@keyframes:定義一個動畫

animation

CSS Code復制內容到剪貼板

<style>             

  .t5{   

            transition: 5s ease-out all;   /*過渡   ease    in 加速   out減速*/  

        }/*transition-delay延遲*/  

        .t5:hover{   

            transform: skew(45deg,45deg)   

        }   

        @keyframes key {   

            0%{   

                background-color: red;width: 200px;height: 200px;   

            }   

            25%{   

                background-color: orange;width: 100px;height: 100px;transform: rotate(-90deg);   

            }   

            50%{   

                background-color: yellow;width: 60px;height: 60px;transform: none;   

            }   

            75%{   

                background-color: green;width: 120px;height: 120px;transform: none;   

            }   

            100%{   

                background-color: blue;width: 200px;height: 200px;transform: rotate(360deg);   

            }   

        }   

        .kt{   

            animation:key 1s;   

           /* animation-iteration-count: infinite;*//*無限循環*/  

            background-color: yellow;   

            width: 200px;height: 200px;   

        }   

 </style>   

<div class="kt t5"></div>  

以上就是關于“html5標簽css3的常用樣式有哪些”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

库尔勒市| 曲沃县| 信阳市| 海晏县| 灵丘县| 锡林浩特市| 安阳县| 巴彦淖尔市| 蓝山县| 新和县| 肥城市| 于田县| 蛟河市| 忻城县| 疏勒县| 阿拉善右旗| 九寨沟县| 墨脱县| 金湖县| 江油市| 乌拉特中旗| 舞钢市| 渑池县| 东平县| 台州市| 常州市| 西丰县| 徐汇区| 城步| 盐津县| 红原县| 黄山市| 柳林县| 宜川县| 利津县| 伊春市| 康乐县| 伊川县| 永德县| 西乌珠穆沁旗| 天祝|