开发者

<button> padding / width problem

开发者 https://www.devze.com 2023-03-22 18:46 出处:网络
I\'m using <button>to make a post request in a form. I also styled a a.button exactly like the <button> (I need the a.button to make some JS stuff).

I'm using <button> to make a post request in a form. I also styled a a.button exactly like the <button> (I need the a.button to make some JS stuff).

The button has some padding, a fixed height. When I do specify the width of the button / a they both look the same. But when I add width to the <button> it ignores the padding.

I'开发者_开发问答m having this problem in Chrome, Firefox and Opera, so I guess it's not a rendering fault. Also same issue with <input type="submit" />

Here is the basic CSS:

.button, button {
    margin: 0;
    display: inline-block;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    color: black;
    background: #ddd;
    font: 12px Verdana;
    padding: 40px; /* 40px, so you can see that it won't be rendered with width */
    text-align: center;
}

The HTML:

<a href="#" class="button">Some text</a>
<button>Some text</button>
<!-- Works fine till here -->
<br /><br />
<a href="#" class="button" style="width:200px">Some text</a>
<button style="width:200px">Some text</button>

Fiddle: http://jsfiddle.net/9dtnz/

Any suggestions why the browsers are ignoring the padding? (top and bottom when using height / left and right when using width).


Very weird, I've seen my Chrome has a box-sizing: border-box; rule for input elements, so padding is included in width...

So to avoid that just specify box-sizing: content-box; (some prefix can be necessary).


It looks fine to me, so it might be a style sheet conflict issue. Try using !important to override whatever it may be and that could solve your problem.

.button, button {
    margin: 0;
    display: inline-block;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    color: black;
    background: #ddd;
    font: 12px Verdana;
    padding: 40px!important; /* 40px, so you can see that it won't be rendered with width */
    text-align: center;
}

Hope this helps.

Michael.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号