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

css中如何加超鏈接

謝彥文2年前18瀏覽0評論

1. 使用 HTML 標(biāo)簽:

```html

```css

color: #ff0000;

text-decoration: none;

font-weight: bold;

font-size: 16px;

a:hover {

color: #008000;

2. 使用偽類:

```css

input[type="text"] {

font-size: 16px;

font-weight: bold;

input[type="submit"] {

background-color: #4CAF50;

color: white;

border: none;

border-radius: 4px;

cursor: pointer;

button {

background-color: #2C3F41;

color: white;

border: none;

border-radius: 4px;

cursor: pointer;

在這個例子中,使用 input[type="text"] 和 input[type="submit"] 偽類來創(chuàng)建文本提交按鈕和回顯按鈕,并在鼠標(biāo)懸停在按鈕上時更改樣式。

3. 使用 JavaScript:

```javascript

document.getElementById('mylink').addEventListener('click', function() {

window.location.href = this.href;