4

所以我的代码如下所示:

<div id="blackbox">style="background: black; 
width: 90px; 
height: 80px; 
color: white; 
text-align: center; 
font-family: Times; 
font-size: 20px;
position: fixed;
left: 0px;
bottom: 150px   

现在它在某种程度上不适用于内联 CSS,这是我唯一能完成的事情。如果您对此有解决方案,我将非常感激。但是所以,我想制作 :hover 属性,但是因为这不起作用:

<div style="background: black; 
width: 90px; 
height: 80px; 
color: white; 
text-align: center; 
font-family: Times; 
font-size: 20px;
position: fixed;
left: 0px;
bottom: 150px}

blackbox:hover {background: white;}

或者

:hover {background: white;}

或者

hover {background: white;}
4

4 回答 4

9

内联样式中不能有伪选择器。

您需要在外部样式表 ( <link rel="stylesheet" href="style.css" />) 中使用 CSS 或使用<style>元素。

于 2013-08-27T14:03:55.903 回答
0

内联伪代码!不可能。在嵌入式或外部样式表中尝试。

于 2013-08-27T14:04:28.417 回答
0

在 css 中写

#blackbox:hover {
    //write something
}
于 2013-08-27T14:04:38.447 回答
0

伪选择器不能内联使用。:) 您必须在 css 中单独指定它。

于 2013-08-27T14:04:51.830 回答