PopForm插件的html结构

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CSSView.aspx.cs" Inherits="CSSView" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>无标题页</title>
    <style type="text/css">
        *
        {
            margin: 0px;
            padding: 0px;
        }
    </style>
    <style type="text/css">
        .box {background:transparent;margin:2em;width:600px;}
  .top, .bottom {display:block; background:transparent; font-size:1px;}
        .head {height:5px; background:#ccc; border-left:1px solid #08c; border-right:1px solid #08c; font-weight:bold;font-size:11px;}    
        .top, .head {cursor:move;}
        .title {margin-left:3px;float:left;}
        .closeButton {margin-right:3px;cursor:pointer;float:right;}
  .content {display:block; background:#ccc; border:0 solid #08c; border-width:0 1px; padding: 0 3px 1px 3px;}   
  .b1, .b2, .b3, .b4 {display:block; overflow:hidden;}
  .b1, .b2, .b3 {height:1px;}
  .b2, .b3, .b4 {background:#ccc; border-left:1px solid #08c; border-right:1px solid #08c;}
  .b1 {margin:0 5px; background:#08c;}
  .b2 {margin:0 3px; border-width:0 2px;}
  .b3 {margin:0 2px;}
  .b4 {height:2px; margin:0 1px;}
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div class="box">
        <div class="top">
            <div class="b1">
            </div>
            <div class="b2">
            </div>
            <div class="b3">
            </div>
            <div class="b4">
            </div>
        </div>
        <div class="head">
            <span class="title">标题</span>
            <span class="closeButton">关闭</span>
        </div>
        <div class="content">
            <iframe src="http://localhost/Ams/PopForm/SelectMultiNetWork.aspx?InvokeFun=AddMultNetWork" frameborder="0" scrolling="no" height="300" width="592"></iframe>
        </div>
        <div class="bottom">
            <div class="b4">
            </div>
            <div class="b3">
            </div>
            <div class="b2">
            </div>
            <div class="b1">
            </div>
        </div>
    </div>
    </form>
</body>
</html>

posted on 2011-05-12 13:38  炼炁修士  阅读(220)  评论(0编辑  收藏  举报

导航