In CSS3 wird das Inhaltsattribut in Verbindung mit den Pseudoelementen „:before“ und „:after“ verwendet, um Inhalte vor und nach dem Element einzufügen. Die Syntax lautet „element:before{content:“inserted content“; }“ und „Element:after{content:“Eingefügter Inhalt“;}“.
Die Betriebsumgebung dieses Tutorials: Windows 10-System, CSS3- und HTML5-Version, Dell G3-Computer.
Was ist die Verwendung von Inhalten in CSS3? Das Inhaltsattribut wird mit :before- und :after-Pseudoelementen verwendet, um Inhalte einzufügen. Die Syntax lautet wie folgt:
content: normal|none|counter|attr|string|open-quote|close-quote|no-open-quote|no-close-quote|url|initial|inherit;
Unter ihnen:
<html> <head> <meta charset="utf-8"> <title>123</title> <style> p:before { content:"好好学习,"; } </style> </head> <body> <p>天天向上</p> </body> </html>
CSS-Video-Tutorial )
Das obige ist der detaillierte Inhalt vonWas ist die Verwendung von Inhalten in CSS3?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!