-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathcolumn-rule-shorthand.html
More file actions
33 lines (31 loc) · 1019 Bytes
/
column-rule-shorthand.html
File metadata and controls
33 lines (31 loc) · 1019 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Multi-column Layout: column-rule sets longhands</title>
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-multicol/#propdef-column-rule">
<meta name="assert" content="column-rule supports the full grammar '<column-rule-width> || <column-rule-style> || <column-rule-color>'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/shorthand-testcommon.js"></script>
</head>
<body>
<script>
test_shorthand_value('column-rule', 'medium dotted green', {
'column-rule-width': 'medium',
'column-rule-style': 'dotted',
'column-rule-color': 'green'
});
test_shorthand_value('column-rule', '100px', {
'column-rule-width': '100px',
'column-rule-style': 'none',
'column-rule-color': 'currentcolor'
});
test_shorthand_value('column-rule', 'blue', {
'column-rule-width': 'medium',
'column-rule-style': 'none',
'column-rule-color': 'blue'
});
</script>
</body>
</html>