gpt4 book ai didi

asp.net - 圆角按钮 ASP.NET

转载 作者:行者123 更新时间:2023-12-04 23:31:43 25 4
gpt4 key购买 nike

我想在我的 asp.net 应用程序中使用圆角按钮。我们在 ASP.NET 3.5 中有什么东西可以帮助我们制作圆角按钮吗?

最佳答案

这是我正在使用的控件和 css。我的按钮是方形的,但事实并非如此。您可以自己创建圆形图像。

alt text

alt text

    <asp:LinkButton ID="lbtnSignIn" class="button" runat="server" OnClick="lbtnSignIn_Click"><span>Sign In</span></asp:LinkButton>

.button
{
background: transparent url('../../Images/ButtonLeft.gif') no-repeat top left;
display: block;
float: left;
line-height: 11px; /* 21px (Button Background) = 5px (padding-top) + 11px (font-size) + 5px(padding-bottom) */
height: 21px; /* Button Background Height */
padding-left: 9px;
text-decoration: none;
font-weight: bold;
color: white;
font-size: 11px;
}

a:link.button, a:visited.button, a:active.button
{
color: white;
text-decoration: none;
margin-right: 10px;
}

a.button:hover
{
background-position: bottom left;
}

a.button span, a.button span
{
background: transparent url('../../Images/ButtonRight.gif') no-repeat top right;
display: block;
padding: 5px 9px 5px 0; /*Set 9px below to match value of 'padding-left' value above*/
}

a.button:hover span
{
background-position: bottom right;
color: white;
}

关于asp.net - 圆角按钮 ASP.NET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4091447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com