我对css和jQuery有小问题。我有两个按钮,我想设置的背景点击为蓝色,我想这样做‘活动’css属性。它没有因为某种原因而起作用。每当按钮不再活动时,它就会失去背景色。下面是代码: HTML:
<div id = 'hey'>
<div class = 'b' id = 'b1' href="#">Button one</div>
<div class = 'b' id = 'b2' href="#">Button Two
我有一部分HTML无法编辑(不使用JavaScript)。
我试图用CSS隐藏一个段落。这一段没有id。有没有任何方法只针对它,而不是它的兄弟<p>与CSS?
HTML:
<div id="foo">
<div></div>
<p> this is the paragraph to hide</p>
<p> this one should not be affected</p>
</div>
我想知道是否可以为特定的类放置一个伪类。例如,
<p> You can get youtube <a class="video" href="www.video.com"> here </a> </p>.
我想要做的是在类视频中创建一个css文件,并访问伪类,如悬停,活动和访问。
我知道有一种方法是
<p> <span class="video"> You can get video <a href="www.video.com"> here &l
我使用css html创建了3个页面,对于第一页和第二页,我设置了页边距4cm,但是对于第三页,我希望将其设置为0cm。这是我的css代码
@media print {
@page
{
size:8.5in 13in;
margin:4.5cm 1mm 1mm 1mm; /* this just for page one and two */
mso-page-orientation: landscape;
}
@page :third {
margin: 0cm; /* for page 3 but not work*/
}
}
如何为每一页设定不同的页边距?谢谢