English 中文(简体)
CSS的一些问题
原标题:Some CSS questions
最佳回答

(1) 一切照样:

#header #tag-cloud #community {
color: #A7A6A6;
}

此前:

#header #tag-cloud a:hover {
color: #F46446;
}

你的纽带将具有独特的颜色,但你在 h上的所有联系都将有同样的色。 这是否有意义?

2) 这里的证言如此广泛:

#header #testimonials {
width: 300px;
float: right;
}

3) 显示您的联系,作为组成部分:

#header #tag-cloud .tiny-text {
font-size: 0.6em;
display: block;
float: left;
}

我希望它能帮助!

问题回答

你们两度使用id子“证言”。 参看这一点。 自己没有受到考验。 姓名必须是一页上的一个要素所独有的。

EDIT:但是,在刚刚到来之后,也许不是问题,而是仍然需要解决。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签