一个类下有很多<a>标签,给第二个<a>标签添加样式,怎么写才能不用再给第二个<a>添加类_html/css_WEB-ITnose
想把2或者3字体大小设置为16px,怎么写才能不用加类或者其他标签
有种写法好像使用加号的
.login + a{ }
回复讨论(解决方案)
css选择器没有+号一说,详见:
http://www.w3school.com.cn/css/css_syntax_descendant_selector.asp
如果你想要让第2,3个a标签添加独特的样式的话,就给这两个标签重新声明一个类;如果你不想声明类的话,还有以下方法:
1.给2,3的a标签添加ID属性,通过ID选择器来控制这两个标签的样式;
2.给2,3的a标签添加title属性,通过属性选择器来控制这两个标签样式;
3.通过JS来控制2,3的a标签的样式;
事实证明后面的三种方法都是比较麻烦的,实际上还是用类选择器靠谱。
我搞错了,有+号的,怪我学得太少,详见:
http://www.w3school.com.cn/cssref/css_selectors.asp
.login a:not(:first-child)
{
font-size: 16px
}
用加号的话就这么写
.login a + a {
font-size: 16px
}
.login a:nth-child(2){ color: red; } //给所有a添加样式
第二个这么写
.login a:nth-child(2){ color: red; }
第三个a就这么写; 只要改变后面的数字就可以了
.login a:nth-child(3){ color: red; }
注意:后面括号的索引值是从1开始的

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit
