有人能告诉我为什么我的
按钮不会调整大小?

发布于 2024-07-14 06:09:53 字数 130 浏览 6 评论 0原文

无论我将它们设置为我用于按钮的 DIV,都不会调整大小。 我正在上传正确的文件,并且它在服务器上发生了更改,但无论我刷新多少次都没有发生任何事情。 我会删除该网址,这样一旦我得到答案就不能将其用作广告。

[已删除网址]

No matter what I set them to my DIVs I use for buttons don't resize. I'm uploading the correct file, and it has the change on the server, but nothing is happening no matter how much I refresh. I'll delete the URL so this can't be used as advertising once I get an answer.

[removed url]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

固执像三岁 2024-07-21 06:09:53

这里的问题是您正在尝试调整内联元素的大小,而这是无法明确控制的。 为了设置元素的高度和宽度,您需要将其显示模式设置为“块”并使用浮动水平对齐元素。

div .button {
   display: block;
   -moz-border-radius: 25px;
   -webkit-border-radius: 25px;
   border: 3px double #F1A631;
   background-color: #FCFF68;
   float: left;
   width: 150px;
   height: 30px;
}

此外,您还需要按照您希望从左到右显示的相反顺序重新排列 DIV。 CSS2 中有一个名为“inline-block”的显示属性,旨在纠正此问题,但并未得到普遍支持。

The issue here is that you're trying to resize inline elements, which cannot be explicitly controlled. In order to set the height and width of the element, you need to set it's display mode to "block" and use float to align the elements horizontally.

div .button {
   display: block;
   -moz-border-radius: 25px;
   -webkit-border-radius: 25px;
   border: 3px double #F1A631;
   background-color: #FCFF68;
   float: left;
   width: 150px;
   height: 30px;
}

Also, you'll need to rearrange your DIVs in the reverse order you'd like them to be displayed left-to-right. There is display property in CSS2 called "inline-block" which is designed to correct this, but it's not universally supported.

流云如水 2024-07-21 06:09:53

在 CSS 中,具有 display: inline 的元素不能应用 宽度高度。 为此,您需要 display: inline-block 。 如果您给任何内联元素指定宽度或高度,IE 会错误地将它们转换为内联块。 幸运的是,自从 Firefox 3 发布以来,您只需最少的黑客攻击就可以使用内联块。

不兼容 Firefox 2:

.ib { display: inline-block; zoom: 1; *display: inline; }

HTML 示例

<div class="ib button">My button</div>

Firefox 2 兼容性

.ib{ display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; }
.button { display: block; }

HTML 示例

<div class="ib"><div class="button">My button</div></div>

在您的 .button 实现中,您需要删除显示:内联部分。

In CSS, elements with display: inline cannot have width or height applied to them. You need display: inline-block for that. IE will incorrectly convert any inline element to inline-block if you give them a width or height. Fortunatley, since the release of Firefox 3 you can use inline-block with only minimal hacking.

no Firefox 2 compatibility:

.ib { display: inline-block; zoom: 1; *display: inline; }

Example HTML

<div class="ib button">My button</div>

Firefox 2 compatibilty

.ib{ display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; }
.button { display: block; }

Example HTML

<div class="ib"><div class="button">My button</div></div>

In your .button implementation you would need to remove the display: inline portion.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文