asp.net中怎样使一个button控件在一个div标签内底部对齐拜托各位大神
在一个div标签中添加一个Button控件,怎样可以是这个控件与div的底部对齐。我写的代码如下:<divstyle="width:970px;height:30px;t...
在一个div标签中添加一个Button控件,怎样可以是这个控件与div的底部对齐。我写的代码如下: <div style="width:970px; height:30px; text-align:left; vertical-align:bottom; line-height:30px;"> <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="image/zhuye_button.gif" OnClick="imagebutton1_click" /> <!--这里可以添加页数指引--> </div>
展开
2个回答
展开全部
用css控制一下即可,div里面放个p。代码在 VS2008下通过 <html xmlns=" http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> <style type="text/css"> #txt{ height:300px; width:300px; border:1px solid #333333; text-align:center; position:relative; } #txt p{ position:absolute; bottom:0px; padding:0px; margin:0px } </style> </head> <body> <form id="form1" runat="server"> <div id="txt"> <p> <asp:Button ID="Button1" runat="server" Text="Button" /> </p> </div> </form> </body> </html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用css控制一下即可,div里面放个p。代码在 VS2008下通过 <html xmlns=" http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title><style type="text/css">
#txt{
height:300px;
width:300px;
border:1px solid #333333;
text-align:center;
position:relative; }
#txt p{
position:absolute;
bottom:0px;
padding:0px;
margin:0px
}
</style></head>
<body>
<form id="form1" runat="server">
<div id="txt">
<p>
<asp:Button ID="Button1" runat="server" Text="Button" />
</p>
</div>
</form>
</body>
</html>
<head runat="server">
<title>Untitled Page</title><style type="text/css">
#txt{
height:300px;
width:300px;
border:1px solid #333333;
text-align:center;
position:relative; }
#txt p{
position:absolute;
bottom:0px;
padding:0px;
margin:0px
}
</style></head>
<body>
<form id="form1" runat="server">
<div id="txt">
<p>
<asp:Button ID="Button1" runat="server" Text="Button" />
</p>
</div>
</form>
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询