欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

css選中所有超鏈接

錢浩然2年前17瀏覽0評論

1. 使用類名

```css

.link-style a {

color: blue;

font-size: 16px;

font-weight: bold;

text-decoration: none;

border: none;

padding: 10px 20px;

2. 使用屬性

```css

.link-style a {

color: blue;

font-size: 16px;

font-weight: bold;

text-decoration: none;

border: none;

padding: 10px 20px;

color: #f00;

3. 使用偽類

```css

.link-style a {

color: blue;

font-size: 16px;

font-weight: bold;

text-decoration: none;

border: none;

padding: 10px 20px;

display: inline-block;

.link-style a:hover {

color: #007bff;

.link-style a:visited {

color: #0069d9;