Learn CSS pseudo-classes in 7 minutes! ☟

preview_player
Показать описание
#css #course #tutorial

CSS pseudo classes hover link active tutorial example explained
Рекомендации по теме
Комментарии
Автор

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bro Code</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div id="greeting">Hover here
<p>Hello</p>
</div>

</body>
</html>

/* style.css */

#greeting p{
background-color: hsl(196, 100%, 81%);
padding: 10px;
display: none;
}
#greeting:hover p{
display: block;
}

BroCodez
Автор

I was trying to find my mistake until i realized that i have written text-size instead of font-size -_-

ahmednajam
Автор

thanks bro for this it really helped me ! god bless you

fakenot
Автор

5:27 this right here is the best, i had a hard time for this concept

hongquannguyen
Автор

ang iyong channel ay Kahanga-hanga : )

SkyCarly
Автор

I am 15 and learning programming but I don't have the money to buy a laptop 😭😭😭😭

uxjnprx
Автор

I wanted to hear about ::before and ::after :(

kristijanlazarev