gpt4 book ai didi

css - 按钮大小与样式不同

转载 作者:行者123 更新时间:2023-12-04 02:15:37 24 4
gpt4 key购买 nike

我想设置按钮和链接的样式以使其看起来相同,通常我已经这样做了。但是我不能让按钮和链接看起来完全一样:

  • 我将按钮的高度设置为 25px,但它没有 25px 的高度,Firebug 和 Chrome 显示为 21px;
  • 宽度相同:比我设置的小 4 个像素;
  • 链接周围有一些奇怪的边距,而按钮没有,但我将边距设置为 0。

听起来微不足道,但当按钮和链接放在一起时,很容易将其视为设计错误(我在布局损坏的地方添加了红线)。登录按钮是提交表单的真实按钮,而注册是一个看起来像按钮的注册页面链接。 misaligned

此处登录按钮为 106x21 像素,注册链接为 110x25 像素。

这是我的风格:

a.button,
button {
display: inline-block;
width: 110px;
height: 25px;
padding: 0;
margin: 0;
color: white;

background: #7dbedb; /* Old browsers */
background: -moz-linear-gradient(top, #7dbedb 0%, #95c3ea 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7dbedb), color-stop(100%,#95c3ea)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #7dbedb 0%,#95c3ea 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #7dbedb 0%,#95c3ea 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #7dbedb 0%,#95c3ea 100%); /* IE10+ */
background: linear-gradient(to bottom, #7dbedb 0%,#95c3ea 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dbedb', endColorstr='#95c3ea',GradientType=0 ); /* IE6-9 */

text-shadow: 1px 1px 1px #757575;
filter: dropshadow(color=#000000, offx=1, offy=1);

border: 2px solid #79cee6;
border-radius: 2px;
text-align: center;
text-decoration: none;
}

用法:

<form ...>
...

<button>Login</button>
<a href="..." class="button">Register</a>
</form>

两个词:我不能让

最佳答案

关于css - 按钮大小与样式不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12105811/

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