HTML元素字体大小之间的空格

时间:2016-12-18 06:11:54

标签: html css html5 css3

我尝试将此图片转换为HTML& CSS代码,但是当我更改段落的字体大小时,我想删除一些不需要的空间。

Example of desired result

问题在于:

Example of actual result

.table h1,
.table h2,
.table h3,
.table p {
    margin: 0;
    padding: 0;
}

.table .table-nested .price {
    font-size: 60px;
    color: #0d0d0d;
}

.table .table-nested .planType {
    font-size: 25px;
    font-weight: bold;
    color: white;
    letter-spacing: 8px;
}

HTML代码:

<h2 class="planType">Basic</h2>
<p class="price">$299/mo.</p>

2 个答案:

答案 0 :(得分:1)

如果您通过在线工具将图片转换为<?php $host = $_SERVER ['HTTP_HOST'] ; $subdomain = "myshop" ; $domain = "$subdomain.$host" ; echo $domain ; ?> ,则可能无效。

你应该为自己编写HTML

就像这样:

HTML
.ad_wrap {
    max-width: 215px;
    text-align: center;
    background: #01c698;
    padding-bottom: 18px;
    border: 4px solid rgba(241, 241, 242, .5);
}
.ad_wrap h5 {
    font-size: 11px;
    text-transform: uppercase;
    font-family: sans-serif;
    color: #d5f0e9;
    font-weight: 100;
    margin-bottom: 0px;
    padding-top: 10px;
    letter-spacing: 10px;
}
.ad_wrap h2 {
    font-size: 31px;
    font-family: arial;
    margin: 0;
    font-weight: 800;
    color: #4b4a48;
}
.ad_wrap span {
    font-size: 7px;
    color: #484b4a;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    position: relative;
    top: -6px;
}

答案 1 :(得分:0)

要减少间距,可以使用line-height属性:

p.price{
   line-height:1.2
}