Rumah > Artikel > hujung hadapan web > Tag Lagenda HTML
Teg Legenda digunakan untuk menentukan kapsyen atau tajuk kepada
Sintaks
<legend> …… </legend>
HTML Kod: Perlu menyediakan kedua-dua Teg Permulaan dan Penamat. Secara amnya, teg HTML mempunyai satu atau lebih atribut yang menyediakan aspek hebat elemen HTML. Tag Lagenda menyokong semua atribut global yang ditentukan. Sesetengah atribut tidak menyokong pelayar web moden. Jadual berikut memberikan atribut teg dengan penerangannya. sejajar: Mentakrifkan penjajaran tajuk atau kapsyen yang diberikan dalam borang berkenaan dengan induk Kod: Nota: Untuk penjajaran yang jelas, lebih baik menggunakan CSS-Align untuk variasi elemen. Penerangan atribut ini telah dibincangkan dalam artikel sebelumnya. Teg legenda juga menerima Atribut Global yang dibincangkan sebelum ini, yang merupakan standard merentas semua elemen HTML5. Ada yang disenaraikan di bawah: Context Define the Context Dir The values give the path of the text. Id Its identifier must match the value of a name. Style Specifies the inline and external styles. Lang Determines the language used in the text. Dir
Nilai memberikan laluan teks.
Id
Pengecamnya mesti sepadan dengan nilai nama.
Gaya
Menentukan gaya sebaris dan luaran.
Lang
Menentukan bahasa yang digunakan dalam teks.
onmouse down, onmouse up, onmouse over, onmouse move, onmouse out, on focus, on blur, onkey press,onkey down,onkey up. The tags that come with the Below are the examples of implementing the area tag in HTML: This section focuses on the form and fieldset. Association of legend tags with the fieldset and preferring to use with the forms gives the best option. Code: Output: The below examples show how the fieldset element groups the labels and radio buttons and checklist together. Meanwhile, the legend tag should be given for the caption for the group. A similar approach can be implemented with other controls. Code: Output: In the following example, we group the information under the HTML tag Atas ialah kandungan terperinci Tag Lagenda HTML. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!<fieldset>
<legend>
Text
</legend>
… Content
<fieldset>
Atribut
1. Atribut Khusus Tag
<fieldset>
<legend align="center">Align
demo:</legend>
2. Atribut Standard
3. Atribut Global
Konteks
Tentukan Konteks
onabort
It is called when a particular event has been aborted. For example, the web browser immediately video before it is completely downloaded.
onblur
Defines the focus of the element.
oncancel
Stops the processed event handler.
Onclick
Triggers when a click is done
onchange
When a click is done somewhere.
onfocus
Triggered when the focus is on the given element
4. Atribut Acara
5. Other Attributes Are
Examples to Implement Area Tag in HTML
Example #1
<!DOCTYPE html>
<html>
<body>
<form>
<fieldset>
<legend>Personal Information:</legend>
FirstName: <input type="text"><br>
LastName: <input type="text"><br>
Email: <input type="text"><br>
Age: <input type="text">
</fieldset>
</form>
</body>
</html>
Example #2
<!DOCTYPE html>
<html>
<body>
<form action="http://www.educba.com/" method="post">
<fieldset>
<legend>Tutorial</legend>
<input type="radio" name="tutorial class" value="online" id="online">
<label for="online">Online</label>
<input type="radio" name="tutorial class" value="offline" id="offline">
<label for="offline">Offline</label>
</fieldset>
</form>
</body>
</html>
Example #3