9

有没有人建议在<li>包含悬停弹出伪类的标签中创建段落类型的行空间?

我有一个<span>弹出窗口a:hover,我希望弹出的文本分成 2 段。它适用<br>于FF,但我想做正确的事情(现在我发现它是错误的!)......

html:

<div id="rightlist">
  <ul>
      <li><a href="">List item
          <span>
             words words words that are "paragraph" 1 of List item
             <br><br>
             different words that make up "paragraph" 2 of List item
          </span></a></li>

CSS:

#rightlist {
margin-top: 10px; margin-right: 5px; width: 387px ; height: 239px ;
background-color: #7EBB11 ;
display: table-cell; 
z-index: 100 ;
    float: right ;
}

#rightlist ul {
  text-align: left;
margin: 0;
   margin-top: 6px;
font-family: sans-serif;
font-size: 20px ;
color: black ;
}

#rightlist a 
{
    display: table-cell;
text-decoration: none; color: black; 
background: #7EBB11 ; 
}

/*appearance of the <a> item (but before the <span> tag) on hover*/
#rightlist a:hover {
color: white;
}

/*appearance of the spanned content within <a></a> tags when not hovered */
/* %%%%% important - keep position:absolute in this div %%%%% */
#rightlist a span {
display: none;
position: absolute ;
margin-left: -412px;
top: -10px; left: 10px; padding: 10px ;
z-index: 100;
width: 380px; height: 222px; 
color: white;  background-color: #7EBB11;
font: 0.75em Verdana, sans-serif; font-size: 13px ; color: black;
text-align: left;
}



/*appearance of spanned content within <a> tags when hovered*/
#rightlist a:hover span {
display: table-cell ;
}
4

5 回答 5

19

<br>呃,里面有<a>or没什么错<span>。根据HTML 4.01 规范,它完全有效。

编辑:<li>可以包含<p>,<br>和几乎任何其他内容。

该规范有点难以阅读,但基本上说:

  • LI可以包含blockinline
  • blockP+ 其他一些东西组成
  • inlinespecial+ 其他一些东西组成
  • special是由A++BR其他一些东西组成的

关于<a>它说:

  • A可以包含inline除了A
  • inline... 往上看
于 2009-01-09T11:26:43.000 回答
1

您可以在其中粘贴另一个跨度作为“假” p 标签:

  <li><a href="">List item
      <span>
         <span>words words words that are "paragraph" 1 of List item</span>
         <span>different words that make up "paragraph" 2 of List item</span>
      </span></a></li>

在你的 CSS 中:

#rightlist span span {display:block;margin:...}

请注意,您声明的任何内容都#rightlist span将适用于#rightlist span span,因此您可能需要覆盖#rightlist span span.

于 2009-01-09T11:24:12.257 回答
1

您的问题可能源于您错误地使用了 <span> 标记。

跨度应该是内联元素,并且您将其样式化,就好像它是块元素一样。诚然,您可以通过添加正确的样式来强制跨度充当块元素,但这可能并不总是被各种浏览器所尊重。

理想情况下,您应该改用 div 。然后,您可以使用 p 标签或进一步的 div 标签来指示段落(理想情况下是 p,因为从语义上讲它们实际上是段落而不是不相关的文本块)。

于 2009-01-09T11:39:52.303 回答
0

为什么会“错”?

您的 br 标签可能应该编码为:

 <br />
于 2009-01-09T11:42:07.363 回答
-4

为什么你现在的方式是错误的?

你可以试试这个

<span>
  <p>words words words that are "paragraph" 1 of List item</p>
  <p>different words that make up "paragraph" 2 of List item</p>
</span>
于 2009-01-09T11:27:58.817 回答