色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

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;