css+div布局案例

简介:

给最外层的div命名一个class

有针对性的进行css布局。

复制代码
<div class="joinus-info">
        <div class="form-title">填写表格</div>
        <form action="{sh::U('Index/joinus')}" class="smart-green"  onsubmit="return checkform();" method="post" id="myform">
        <table width="100%" border="0" cellspacing="0" cellpadding="0" class="addTable">
            <tr>
                <td height="48" align="right"><strong>姓名:</strong></td>
                <td colspan="3" class="lt"><input type="text" name="name" id="name" class="" size="45" value=""/></td>
            </tr>
            <tr>
                <td height="48" align="right"><strong>手机:</strong></td>
                <td colspan="3" class="lt"><input type="text" name="phone" id="phone" class="" size="45" onkeyup="value=value.replace(/[^\d]/g,'')" value=""/></td>
            </tr>
            <tr>
                <td height="48" align="right"><strong>行业:</strong></td>
                <td colspan="3" class="lt">
                <select name="business" id="business">
                    <option value="">-请选择-</option>
                    <option value="LS">零售</option>
                    <option value="CY">餐饮</option>
                    <option value="QT">其他</option>
                </select>
                </td>
            </tr>
            <tr>
                <td height="48" align="right"><strong>地址:</strong></td>
                <td colspan="3" class="lt">
                    <div id='s_city'>
                        <select name="province" class="prov set_disabled"></select>
                        <select name="city" class="city " disabled="disabled"></select>
                        <select name="district" class="dist " disabled="disabled"></select>
                    </div>
                </td>
            </tr>
            <tr>
                <td height="48" align="right"><strong>详细地址:</strong></td>
                <td colspan="3" class="lt">
                    <input type="text" name="address" id="address" class="address" value=""/>
                </td>
            </tr>

            <tr>
                <td height="48" align="right"><strong>选择代理商:</strong></td>
                <td colspan="3" class="lt" style="width: 80%;">
                    <volist name="agentData" id="vo" mod="3" key="k" empty="暂时没有数据">
                    <div style="display:inline-block;width:280px;margin:3px;">
                    <input type="radio" class="regular-radio" value="{sh:$vo.agent_id}" name="agent_id" id="agent_{sh:$k}" <eq name="k" value="1">checked="checked"</eq>><label for="agent_{sh:$k}"></label><span style="display:inline-block;padding:0px 0px 5px 5px;">{sh:$vo.name} 电话({sh:$vo.tel})</span>
                    </div>
                    <eq name="mod" value="2"><br/></eq>
                    </volist>
                </td>
            </tr>
            <tr>
                <td height="48" align="right"><strong>备注:</strong></td>
                <td colspan="3" class="lt"><textarea name="remarks" class="" placeholder="请输入备注信息..." style="width:300px;height:80px;"></textarea></td>
            </tr>
            <tr>
                <td></td>
                <td class="lt">
                <notempty  name="agentData"><input type="submit" name="submit" value="提交" class="button btn-success"/></notempty >
                </td>
            </tr>
        </table>
    </form>
    </div>
复制代码

这里的joinus-info 就是最外层的class

css布局如下

复制代码
.joinus-info{margin: 0 auto;width:100%;text-align: left;font-size: 16px;background-color:#EFEFEF;}
.joinus-info table{
    margin-left:10%;
}
.joinus-info .form-title{
    font-size: 20px;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    color:#FB780F;
}
复制代码

div joinus-info中有一个form smart-green

可以针对form进行布局

复制代码
.smart-green input[type="text"], .smart-green input[type="email"], .smart-green textarea, .smart-green select {
color: #555;
height: 40px;
line-height:15px;
width: 40%;
padding: 0px 0px 0px 10px;
margin-top: 2px;
border: 1px solid #E5E5E5;
background: #FBFBFB;
outline: 0;
-webkit-box-shadow: inset 1px 1px 2px rgba(238, 238, 238, 0.2);
box-shadow: inset 1px 1px 2px rgba(238, 238, 238, 0.2);
font: normal 14px/14px Arial, Helvetica, sans-serif;
}
.smart-green input[type="text"].address{width: 60%;} /*这里面存在一个执行顺序的问题class先执行,class下面的input后执行*/
.smart-green textarea{
height:100px;
padding-top: 10px;
}

.smart-green select{
    width: 15%;
}

.smart-green input[type="radio"]{
    margin-top: 10px;
}


.smart-green .button {
background-color: #9DC45F;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-border-radius: 5px;
border: none;
padding: 10px 25px 10px 25px;
color: #FFF;
text-shadow: 1px 1px 1px #949494;
}
.smart-green .button:hover {
background-color:#80A24A;
}
复制代码

这样布局,不会对其他的模块造成影响。而且目标明确。有意思。

这样form下的表单元素就会加入smart-green的样式了。



本文转自TBHacker博客园博客,原文链接:http://www.cnblogs.com/jiqing9006/p/4997158.html,如需转载请自行联系原作者

相关文章
|
4月前
|
前端开发
CSS实现充电效果案例
CSS实现充电效果案例
93 1
|
2月前
|
前端开发 UED 容器
在 CSS 中使用 Flex 布局实现页面自适应时需要注意什么?
【10月更文挑战第22天】在使用 Flex 布局实现页面自适应时,需要对其基本原理和特性有深入的理解,同时结合具体的布局需求和场景,进行细致的调整和优化。通过合理的设置和注意事项的把握,才能实现理想的自适应效果,提升用户体验。还可以根据实际情况进行更深入的探索和实践,以不断提升 Flex 布局的应用能力。
|
2月前
div+css3制作的简洁404错误页面特效源码
div+css3制作的简洁404错误页面特效源码是一段实现了非常简单也大方的效果的网站404错误页面效果代码,当鼠标经过404数字时,该数字会发光发亮,本段代码适应于所有网站使用,有需要的朋友们可以前来下载使用。本段代码兼容目前最新的各类主流浏览器,是一款非常优秀的特效源码。
25 1
|
2月前
|
前端开发 JavaScript 开发者
掌握 CSS 弹性布局(Flexbox):构建复杂页面布局的高效秘籍与实战案例
CSS弹性布局(Flexbox)是现代网页设计中构建复杂页面布局的高效工具。本文将深入浅出地介绍Flexbox的核心概念、使用技巧及实际应用案例,帮助读者快速掌握这一强大布局方法。
|
2月前
|
前端开发 容器
实现CSS品字布局
【10月更文挑战第27天】
|
3月前
|
前端开发 容器
使用 CSS Grid 布局实现响应式设计
【10月更文挑战第1天】使用 CSS Grid 布局实现响应式设计
70 4
|
3月前
|
前端开发 容器
前端技术分享:利用CSS Grid布局实现响应式设计
【10月更文挑战第1天】前端技术分享:利用CSS Grid布局实现响应式设计
|
3月前
|
前端开发 JavaScript
JavaScript动态渲染页面爬取——CSS位置偏移反爬案例分析与爬取实战
JavaScript动态渲染页面爬取——CSS位置偏移反爬案例分析与爬取实战
43 0
|
4月前
|
JavaScript 前端开发
网页前端课程设计-【模仿】香港中文大学官网,轮播图及div+css布局,js的dom操作
这篇文章介绍了如何模仿香港中文大学官网进行网页前端课程设计,包括使用div+css布局、js的DOM操作以及实现轮播图等技术细节。

热门文章

最新文章