Boby part of the fieldset tag - HTML

 Essays and records to facilitate their access to fellow travelers.

#------------------------------------------------I ------------------------------------------- dividing line is a shame

The label main function is to make a box, probably looks as follows:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

    <fieldset>
        <legend>登录</legend>
    </fieldset>
</body>
</html>

The results show:

We can do it in the box operation:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

    <fieldset>
        <legend>登录</legend>
        <label for="username">用户名:</label>
        <input id="username" type="text" name="user"/>
    </fieldset>
</body>
</html>

The results show:

 

Guess you like

Origin www.cnblogs.com/lirongyang/p/11250824.html