-
Notifications
You must be signed in to change notification settings - Fork 0
/
08CSS.html
36 lines (26 loc) · 831 Bytes
/
08CSS.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS - JQuery</title>
<!-- JQuery -->
<script src="jquery-3.6.4.min.js"></script>
<!-- Script -->
<script>
// Ao carregar o documento
$(document).ready(function(){
$("h1").css({
//Quando se trabalha com multiplas propriedades Css, utiliza-se as {} (chaves).
//A última linha de atributo não utiliza vírgula
"color":"pink",
"borderStyle":"solid",
"borderColor":"green",
"backgroundColor":"blue"
});
});
</script>
</head>
<body>
<h1>Utilizando CSS com jQuery</h1>
</body>
</html>