将样式应用到控件中的所有链接
我有一个名为“菜单”的 div,该菜单内有一些 div,其中有超链接。
我有一个“菜单”类,我还想要一个类将一定的高度和宽度应用于我的所有超链接。
我尝试了 .MenuDiv a{}
但没有成功
I've got a div called 'menu' and inside that menu there are some divs and inside them there are hyperlinks.
I have a class for 'menu' and I also want a class to apply to all of my hyperlinks a certain height and width.
I tried .MenuDiv a{}
but it didn't work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这有帮助吗?
.菜单分区a
{
...
}
Does this help?
.Menu div a
{
...
}
你可能已经知道这一点;p
但是如果我们的类是“menu”,你就不能使用“.MenuDiv”。
链接的CSS(如果它是一个类):
.menu a{width:600px;height:200px}
如果您有:
You might alredy know this ;p
But if our class is "menu" you cant use ".MenuDiv".
Css for the links if it is an class:
.menu a{width:600px;height:200px}
It will also work if you have: