gpt4 book ai didi

asp.net - 为什么我的 CSS 宽度在 aspx 页面中不起作用?

转载 作者:太空宇宙 更新时间:2023-11-03 22:04:15 25 4
gpt4 key购买 nike

我先展示我的代码

<div class = "buttonsHolder">
<asp:Button runat = "server" ID = "btnAdd" Text = "Add New" CssClass = "buttonUserControl" />
<div class = "horizontalSpace"></div>
<asp:Button runat = "server" ID = "btnEdit" Text = "Edit" CssClass = "buttonUserControl" />
<div class = "horizontalSpace"></div>
<asp:Button runat = "server" ID = "btnDelete" Text = "Delete" CssClass = "buttonUserControl" />
</div>

我的 CSS 是

.buttonsHolder
{
height:25px;
width:465px;
border: solid 1px;
}

.horizontalSpace
{
width:20px;
float:left;
}

.buttonUserControl
{
width:105px;
height:24px;
}

但是无论我给定多少宽度,horizo​​ntalSpace 都不起作用

再补充一点,我不擅长HTML CSS。   可以作为在按钮之间保留空格的选项,但我的 CSS 有什么问题,如果没有 ` ,我该如何修复它?

最佳答案

如果您只想在按钮之间留出水平空间,请在它们之间放置一个 margin-right 而不是在它们之间放置 div。

在你的.buttons类中放置

margin-right: 20px;

关于asp.net - 为什么我的 CSS 宽度在 aspx 页面中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7937106/

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