-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjqueryCSS.css
More file actions
39 lines (30 loc) · 738 Bytes
/
jqueryCSS.css
File metadata and controls
39 lines (30 loc) · 738 Bytes
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
37
38
39
/*
===============================================================================================
NOTE: This CSS document is divided into specific topic sections from jQuery.js and jquery.html.
===============================================================================================
*/
/*
#3: Traversal and Manipulation: Selecting elements
-- the ruleset below will hide when applied.
*/
.hidden {
display: none;
}
.block {
width: 80px;
height: 80px;
background-color: red;
}
h4 {
background-color: whitesmoke;
padding: 20px;
}
li {
border: 1px dashed lightgrey;
padding: 7px;
list-style-type: circle;
}
li:hover {
border: 1px solid black;
background-color: aliceblue;
}