Dieser Artikel stellt Ihnen HTML5-Attribute vor: Codebeispiele für ausgewählte Attribute. Ich hoffe, dass er für Freunde hilfreich ist.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> /* 标签选择器 标签的名字{属性:值} */ p{ color: red; } /* 类选择器 点类的名字{属性:值} */ .second{ color: green; } /* 层级选择器 后代选择器 标签嵌套 父选择器 子选择器{属性:值} */ p p{ color: yellow; } </style> </head> <body> <p> p 标签 <p> 内嵌的标签</p> </p> <p>段落标记1</p> <p class="second"> 段落标记2</p> </body> </html>
Verwandte Empfehlungen:
HTML5-Attribut: Beispiel für die Verwendung des Randattributs
HTML5-Attribut: Beispiel für die Verwendung des Formularattributs
Das obige ist der detaillierte Inhalt vonHTML5-Attribute: Codebeispiel für das Select-Attribut. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!