內聯元素,與別人公用一行,但是設置寬高無效。其特點:
①和其他元素都在一行上
②高,行高及外邊距和內邊距不可改變;
③寬度就是它的文字或圖片的寬度,不可改變
④內聯元素只能容納文本或者其他內聯元素
代碼如下:
XML/HTML Code復制內容到剪貼板
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>標簽基礎2</title>
- </head>
- <body>
- <!-- 內聯元素 與別人公用一行 但是設置寬高無效 -->
- <!-- 無語義 -->
- <span>無語義</span>
- <!-- 圖片 alt圖片加載失敗顯示-->
- <img src="d" alt="加載失敗">
- <!-- 超鏈接 -->
- <a href="http://www.baidu.com">跳轉</a>
- <!-- 斜體強調 -->
- <var>斜體強調作用</var>
- <!-- em和i經常用於制作小圖標 -->
- <em>斜體強調作用</em>
- <i>斜體強調作用</i>
- <!-- 加粗強調 -->
- <strong>加粗強調</strong>
- <!-- 表單 提交數據-->
- <form action="">
- <!-- 輸入框 -->
- <input type="text">
- <!-- 密碼輸入框 -->
- <input type="password">
- <!-- 按鈕 -->
- <input type="button" value="按鈕">
- <!-- 提交表單 -->
- <input type="submit" value="提交表單">
- <!-- 日期 年月日-->
- <input type="date">
- <!-- 日期 年周 -->
- <input type="week">
- <!-- 日期 年月 -->
- <input type="month">
- <!-- 日期 當前時間 -->
- <input type="time">
- <!-- 選擇文件 -->
- <input type="file" value="打開文件">
- <!-- 只能輸入數字 -->
- <input type="number">
- <!-- 顏色選擇器 -->
- <input type="color">
- <!-- 重置 -->
- <input type="reset">
- <!-- 復選框 -->
- <input type="checkbox">我愛你
- <input type="checkbox">你愛我
- <!-- 單選框 name 同名字為一組-->
- <input type="radio" name="sex" checked="checked">男
- <input type="radio" name="sex">女
- </form>
- <!-- 多行文本 cols寬度 rows高度 -->
- <textarea name="" id="" cols="30" rows="10"></textarea>
- <!-- 選擇列表 默認第一個選項的值為初始值-->
- <select name="" id="">
- <option value="">選項1</option>
- <option value="">選項2</option>
- <option value="">選項3</option>
- </select>
- </body>
- </html>
以上所述是小編給大家介紹的HTML5進階段內聯標簽匯總,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對網站的支持!