html页面典型页面制作

1、多列多行式

这种样式最好通过百分比来制作,因为不同手机浏览宽度是不一样的

像这种,中间图片的制作,html:

<ul class="person-list">
                <li class="person-item"><img src="/resources/img/training_plan/scry.png"></li>
                <li class="person-item"><div class="person-name">郭子阳</div>
                    <div class="person-type">(市场运营人员)</div></li>
                <li class="person-item"><img src="/resources/img/training_plan/pxzxry.png"></li>
                <li class="person-item"><div class="person-name">周乃容</div>
                    <div class="person-type">(培训执行人员)</div></li>
            </ul>

css:

.person-list {
    display: inline-block;
    margin: 0;
    margin-top: 20px;
    padding: 10px 0;
}

.person-item>img {
    width: 100%;
}

.person-item {
    float: left;
    list-style: none;
}

.person-item:nth-child(2n-1) {
    width: 15%;
}

.person-item:nth-child(2n) {
    width: 35%;
    margin-top: 2%;
}

.person-name {
    font-size: 11pt;
    padding-left: 10px;
}

.person-type {
    font-size: 10pt;
    color: #888;
    padding-left: 10px;
}
时间: 2024-10-26 04:07:21

html页面典型页面制作的相关文章

Web设计中打开新页面或页面跳转的方法

一.asp.net c# 打开新页面或页面跳转 1. 最常用的页面跳转(原窗口被替代):Response.Redirect("newpage.aspx"); 2. 利用url地址打开本地网页或互联网:Respose.Write("<script language=&apos;javascript&apos;>window.open(&apos;"+ url+"&apos;);</script>&quo

js之iframe子页面与父页面通信

iframe子页面与父页面通信根据iframe中src属性是同域链接还是跨域链接,通信方式也不同. 一.同域下父子页面的通信 父页面parent.html <html> <head> <scripttype="text/javascript"> function say(){ alert("parent.html"); } function callChild(){ myFrame.window.say(); myFrame.wi

JS 父页面调子页面(2种情况),子掉父级(1种)(转)

A :父级调用子级页面 ,非IFRAME情况,类似平级: window.open("子页面.html", "", "width=1024,height=768"); window.opener.子页面函数名字(); B : 父级调用子级页面 ,IFRAME情况 window.frames["iframe名字"].子页面的函数(); C: 子级调用父级就简单了 window.parent.getIdsChangeCate(ids

Firefox下td用display控制页面导致页面变形

Firefox下table的td元素如果使用了display:'block'会使得table变形,原因是block会将对象强制作为块对象呈递,为对象之后添加新行,所以并不适合td,改成display:'' 就可以了, 由于display属性设置为空时,默认为显示,而不死块对象传递,所以就会按照table默认的方式呈现. Firefox下td用display控制页面导致页面变形,布布扣,bubuko.com

MVC页面重定向&#39;页面跳转

MVC页面重定向,主要有以下几种形式: 1.Response.Redirect();方法 [csharp] view plain copy using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcDemo.Controllers { [HandleError] public class HomeController

页面与页面之间传递参数

方式一: <jsp:useBean id="userForm" class="com.wgh.UserForm" scope="page"/>在这个类里面set get<jsp:setProperty name="userForm" property="*"/> 输入框<input name="pwd" type="password" i

struts2怎么实现页面到页面之间的传值?

我要实现一个产品订购的功能,在浏览产品的时候通过点击一个订购的链接,跳转到提交订单的页面,在跳转的同时要把浏览的产品的名称和型号传到提交订单的页面,并且把这里的订单类的产品名称和型号的表单域里赋上传递过来的值,因为只用到两个值,不想通过Action去操作,只涉及页面之间的值传递... 我是这样做的: 在浏览产品页面有:<a href='<s:url value="orderList_add.jsp" > <s:param name="productNa

Web设计中打开新页面或页面跳转的方法 js跳转页面

Web设计中打开新页面或页面跳转的方法 一.asp.net c# 打开新页面或页面跳转 1. 最常用的页面跳转(原窗口被替代):Response.Redirect("newpage.aspx"); 2. 利用url地址打开本地网页或互联网:Respose.Write("<script language=&apos;javascript&apos;>window.open(&apos;"+ url+"&apos;)

js处理iframe中子页面与父页面里面对象的取得的解决方案

[1]子页面取得父页面的dom对象 parent.window.$('#id').val(""); [2]父页面取得子页面的对象 $(window.frames["iframeName"].document).find('#subjectDg').datagrid('acceptChanges'); $('#iframeId').contents().find('#id'); //***** [3]父页面调用子页面方法:reload()为自己写的子页面js方法 $(