CSS 中哪一個元素用於給元素前插入某些內容
使用 :before 元素以便在元素之前插入一些內容。
示例
你可以嘗試執行以下程式碼以使用 CSS 在元素前插入一些內容 −
<html>
<head>
<style>
p:before {
content: url(/images/bullet.gif)
}
</style>
</head>
<body>
<p> This line will be preceded by a bullet.</p>
<p> This line will be preceded by a bullet.</p>
<p> This line will be preceded by a bullet.</p>
</body>
</html>
廣告
資料結構
網路
關係資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP