0

我在“Bella”标志下获得“by Jackie”时遇到问题。我可以让它下去的唯一方法是使用换行符,这会导致添加大量空间。任何人都对如何解决此问题有任何建议。

HTML:

<div class="header">
 <div class="wrapper">
  <h1><a href="#">Bella<i>by Jackie</i></a></h1>
  <ul>
     <li><a href="index.html">Home</a></li>
     <li><a href="whatwedo.html">What We Do</a></li>
     <li><a href="features.html">Features</a></li>
     <li><a href="benefits.html">Benefits</a></li>
     <li><a href="#">Gallery</a></li>
     <li><a href="contact.html">Contact</a></li>
  </ul>
</div>

CSS:

.header h1 {
float: left;
line-height: inherit;
background: #969;
padding: 0px 30px 0px 30px;
text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 0px 0px 2px 2px;
margin-top: 0px;
}

.header h1 a {
margin-bottom:-20px;
}

.header h1 i {
font-family: 'Lobster', cursive;
font-size: medium;
font-style: normal;
padding-left: 0.5em;
padding-top: -10px;
}

.header h1 a {
font-family: 'Lobster', cursive;
font-size: 36px;
}

这是一个参考http://jsfiddle.net/XxEaz/

4

4 回答 4

2

您只需将其设置为display:block,即可达到预期效果。无需添加更多 HTML。

jsFiddle在这里

.header h1 i {
    display: block;
}
于 2013-10-14T17:12:52.137 回答
1

add display:block; to

.header h1 i {
    font-family:'Lobster', cursive;
    font-size: medium;
    font-style: normal;
    padding-left: 0.5em;
    padding-top: -10px;
    display:block;
}
于 2013-10-14T17:15:03.740 回答
0

首先:如果可以的话,将 I 标签更改为 SPAN 标签。其语义目的是用于参考书目文档:书籍/杂志/文章标题。

第二:将“Bella”和“By Jackie”分别包装在自己的 SPAN 中:

<h1>
  <a href="#" title="">
    <span class="header-title org">Bella</span>
    <span class="header-title owner">By Jackie</span>  
  </a>
</h1>

现在你的 CSS 只需要:

.header .header-title {display: block}
于 2013-10-14T19:18:08.130 回答
0

use this code:

add this CSS class:

span{
    display:block;
}

and edit your html like this:

<div class="header">
        <div class="wrapper">
            <h1><a href="#">Bella<i><span>by Jackie</span></i></a></h1>
        </div>
</div>

jsFiddle is here

于 2013-10-14T17:13:58.150 回答