css设计并排布局
程序员文章站
2022-05-28 22:58:28
css code html code 效果如下 ......
css code
form#reset_password ul { list-style: none; margin: 0 0 20px 200px; padding: 0; } form#reset_password ul li:first-child { display: inline; line-height: 34px; padding-left: 10px; } form#reset_password ul li:nth-child(2) { float: left; line-height: 34px; } form#reset_password ul li:last-child { float: left; }
html code
<form id="reset_password"> <input type="hidden" name="rt" value="<?= $msg['reset_time'] ?>"> <input type="hidden" name="uname" id="uname" value="<?=$msg['username'];?>"> <ul> <li></li> <li> 用户名</li> <li><input class="form-control" type="text" value="<?=$msg['username'];?>" placeholder="" autocomplete="off" disabled /></li> </ul> <ul> <li></li> <li> 新密码</li> <li><input class="form-control" type="password" name="newpwd" id="newpwd" value="" autocomplete="off" placeholder="请输入您的新密码" /></li> </ul> <ul> <li></li> <li>确认密码</li> <li><input class="form-control" type="password" name="repeat_pwd" id="repeat_pwd" value="" autocomplete="off" placeholder="请再次输入您的新密码以进行确认" /></li> </ul> <p><button id="save_new_pwd" class="btn btn-success">确认修改</button></p> </form>
效果如下
下一篇: vertical-align 详解
推荐阅读
-
页面自动生成工具设计_html/css_WEB-ITnose
-
使用CSS3实现多列布局与多背景的技巧
-
实现一个三列布局(左右侧固定,中间自适应宽度)_html/css_WEB-ITnose
-
【CSS3 入门教程系列】CSS3 Media Queries 实现响应式设计_html/css_WEB-ITnose
-
以20像素为基准的CSS网页布局实践分享_html/css_WEB-ITnose
-
[转]CSS3 Media Query实现响应布局_html/css_WEB-ITnose
-
HTML-移动端如何使用css让百分比布局的弹窗水平和垂直方向上居中_html/css_WEB-ITnose
-
潮流设计:15个创意的 3D 字体版式作品欣赏_html/css_WEB-ITnose
-
PS网页设计教程III——在Photoshop中设计优雅的网站布局设计
-
DIV+CSS布局问题_html/css_WEB-ITnose