zoukankan      html  css  js  c++  java
  • HTML5<fieldset>标签

    1、<fieldset>标签对表单中的相关元素进行分组。

    2、<fieldset>标签会在相关表单元素周围绘制边框。

    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <meta charset="utf-8" />
    </head>
    <body>
    <form>
    <fieldset>
    <legend>个人信息:</legend>
    <p>姓名:<input type="text"name="name" /></p>
    <p>年龄:<input type="text"name="age" /></p>
    <p>职务:<input type="text"name="job" /></p>
    <p>地址:<input type="text"name="address" /></p>
    </fieldset>
    </form>
    </body>
    </html>

  • 相关阅读:
    iptables
    apt
    cvc-elt.1: Cannot find the declaration of element 'beans'.
    di
    log
    java内存模型
    spring-jms
    JTS
    10java进阶——IO2
    17单例
  • 原文地址:https://www.cnblogs.com/melao2006/p/5080584.html
Copyright © 2011-2022 走看看