如何删除INSIDE CSS边框的空格?我希望边框在文本周围很紧

时间:2011-03-16 16:57:23

标签: html css border

这是我非常基本的测试代码:

<html>

    <head>
        <title></title>
    </head>
    <body style="font-size:100%; margin:0; padding:0;">

    <p style="border:1px solid red; font-size:10em; margin:0;">
    test</p>

    </body>
</html>

问题在于,当我增加字体大小时,文本的上方和下方会放置更多的空白区域。

有没有办法让边框紧紧围住文字?

感谢。

3 个答案:

答案 0 :(得分:2)

你应该可以使用:

p {
    padding: 0; /* reduces the space between the content, and the border, of the p element */
    line-height: 1.2em; /* to avoid the text being 'squashed' together */
    font-size: 1em;
    border: 1px solid #000;
}

JS Fiddle

答案 1 :(得分:1)

尝试使用line-height

<html>

    <head>
        <title></title>
    </head>
    <body style="font-size:100%; margin:0; padding:0;">

    <p style="border:1px solid red; font-size:10em; margin:0; line-height:0.5em">
    test</p>

    </body>
</html>

答案 2 :(得分:1)

使用CSS重置样式表可以让其他浏览器更容易处理,因为许多浏览器都有自己的默认值。

只需将这一大量CSS粘贴到您的脚本中,它看起来应该更加统一(来源:http://developer.yahoo.com/yui/3/cssreset/):

html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}

现在,@David Thomas的答案看起来可能是统一的。