gpt4 book ai didi

html - 边框未显示在提交按钮上

转载 作者:太空宇宙 更新时间:2023-11-03 20:55:44 24 4
gpt4 key购买 nike

当我尝试为我的按钮样式添加边框时,它没有出现。我以前成功地做到了这一点,但不知道这次我做错了什么。

这是 HTML:

<input name="submit" type="submit" class="mediumbutton" value="Submit">

这是我的 CSS:

.mediumbutton {
width: 140;
height: 40;
font-family: Arial, Helvetica, sans-serif;
color: #666;
font-size: 24px;
background-color: #DDD;
border: 3px;
border-color: #000;
}

谢谢。

最佳答案

您缺少 border-style , 尝试 border: 3px <strong>solid</strong> #000000; .

"Since the initial value of the border styles is 'none', no borders will be visible unless the border style is set." — http://w3.org/tr/css21/box.html#propdef-border-style

此外,您的 widthheight属性值缺少 unit of measurement .同时 input元素有些异常(exception),通常如果尽管缺少此类单位但仍适用此类尺寸,则可能表明您的文档正在 quirks mode 中呈现。 ,这可以通过确保正确包含正确的文档类型声明 ( <!doctype html> ) 来纠正(应该是第一行,前面绝对没有任何内容)。

关于html - 边框未显示在提交按钮上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10791792/

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