3 <title>CSS Logical Properties: Flow-Relative Border Colors in Visited Links
</title>
8 border:
25px solid red;
10 #link1, #link2:visited {
11 border-block-color: green;
12 border-inline-color: green;
15 border-block:
25px solid green;
16 border-inline:
25px solid green;
19 /* :visited should honor the border color but ignore other values in the shorthand */
20 border-block:
0 none green;
21 border-inline:
0 none green;
24 <p>Test passes if there is a filled green square and
<strong>no red
</strong>.
</p>
25 <a id=
"link1" href=
"visited-page.html"></a><a id=
"link2" href=
"visited-page.html"></a><br>
26 <a id=
"link3" href=
"visited-page.html"></a><a id=
"link4" href=
"visited-page.html"></a>