学无止境

Life-long learning
posts - 57, comments - 21, trackbacks - 0, articles - 0
  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理

公告

普通控件样式

Posted on 2008-08-08 15:25 anytime8 阅读(53) 评论(0) 编辑 收藏

<head runat="server">
    <title>无标题页</title>
    <link href="StyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div align="center">
        <table style="width: 328px">
            <tr>
                <td colspan="3" style="height: 106px">
                </td>
            </tr>
            <tr>
                <td style="width: 100px; height: 30px;">
                    </td>
                <td style="width: 100px; height: 30px;" align="left">
                    <asp:Label ID="Label1" runat="server" CssClass="lab" Text="Label"></asp:Label></td>
                <td style="width: 100px; height: 30px;">
                    </td>
            </tr>
            <tr>
                <td style="width: 100px; height: 28px">
                </td>
                <td style="width: 100px; height: 28px">
                    <asp:TextBox ID="TextBox1" runat="server" CssClass="txt"></asp:TextBox></td>
                <td style="width: 100px; height: 28px">
                </td>
            </tr>
            <tr>
                <td style="width: 100px; height: 26px">
                </td>
                <td style="width: 100px; height: 26px">
                    <asp:Button ID="Button1" runat="server" CssClass="button" Text="Button" /></td>
                <td style="width: 100px; height: 26px">
                </td>
            </tr>
        </table>
   
    </div>
        &nbsp;
    </form>
</body>
</html>

 

body {
}
.lab
{
 font-weight: bold;
 font-size: 20px;
 background-color: #ccffff;
 text-decoration: underline line-through;
}
.txt
{
 font-size: 9px;
 margin: 1px;
 width: 100px;
 height: 11px;
}
.button
{
 font-weight: bold;
 font-size: 14px;
 width: 100px;
 height: 20px;
}

 

如下图: