在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Foundation 表单Foundation 表单控制会自动设置为全局样式: 所有 实例<form> Input: <input type="text" placeholder="Name"> Textarea: <textarea rows="4" placeholder="Address"></textarea> Select: <select> <option>1</option> <option>2</option> <option>3</option> <option>4</option> </select> </form> 尝试一下 » 标签在表单中使用 实例<form> <label for="name">Input <input type="text" placeholder="Name" id="name"> </label> <labelfor="adr">Label <textarea rows="4" placeholder="Address" id="adr"></textarea> </label> <labelfor="num">Select <select id="num"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> </select> </label> </form> 尝试一下 » 如果需要设置标签右对齐,可以使用 FieldsetFoundation 渲染 实例<form> <fieldset> <legend>Fieldset Legend</legend> <label>Name <input type="text" placeholder="First Name.."> </label> <label>Email <input type="text" placeholder="Enter email.."> </label> </fieldset> </form> 尝试一下 » 错误状态使用 实例<form> <label class="error">Error <input type="text" placeholder="Name.."> </label> <small class="error">Wrong input</small> <textarea rows="4" placeholder="Address"></textarea> <small class="error">Wrong input</small> </form> 尝试一下 »
|
请发表评论