Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/32.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css 文本用奇怪的蓝色下划线?_Css_Hover_Underline - Fatal编程技术网

Css 文本用奇怪的蓝色下划线?

Css 文本用奇怪的蓝色下划线?,css,hover,underline,Css,Hover,Underline,我试图在您将鼠标悬停在a上时显示一个框,但我得到的是: 这是你需要的吗?清理css的问题。我认为这是一个问题:文本装饰:下划线@编码器我之所以有这个,是因为我想在上加下划线,但不是在上加下划线@BlaXpirit我有。你能发布一个演示,你说你需要为加下划线,所有东西都在@coder@Thew里面吗 <p>Text adjustement <span> - [b](text)[/b] for <b>Bold</b><br> -

我试图在您将鼠标悬停在a上时显示一个框,但我得到的是:


这是你需要的吗?清理css的问题。

我认为这是一个问题:文本装饰:下划线@编码器我之所以有这个,是因为我想在
上加下划线,但不是在
上加下划线@BlaXpirit我有。你能发布一个演示,你说你需要为加下划线,所有东西都在@coder@Thew里面吗
<p>Text adjustement
 <span>
  - [b](text)[/b] for <b>Bold</b><br>
  - [u](text)[/u] for <u>Underlined</u><br>
  - [i](text)[/i] for <i>Italic</i><br>
  - [s](text)[/s] for <s>Strike</s><br>
  <br>
  - [big](text)[/big] for big text<br>
  - [medium](text)[/medium] for medium-large text<br>
  - [small](text)[/small] for small text<br>
 </span>
</p>
table.fancy td.tdtop p {
    color: blue;
    display: block;
}

table.fancy td.tdtop p:hover {
    text-decoration: underline;
    cursor: pointer;
}

table.fancy td.tdtop p span {
    color: black;
    display: none;
    padding: 2px;
    padding-left: 4px;
    border: 1px solid #e0e0e0;
    background: #f0f0f0;
    text-decoration: none;
}

table.fancy td.tdtop p:hover span {
    display: block;
    text-decoration: none !imporant;
    color: black !imporant;
}