blob: befbfd33af751cc2c488bdb639b84538bf4b8afc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<title>::first-letter depending on size container query with changing list-style-type</title>
<link rel="help" href="https://crbug.com/1505250">
<style>
div::first-letter{
color: green;
}
div:only-of-type {
container-type: size;
list-style: my-circle inside;
}
</style>
<div>X
<div></div>
<script>document.body.offsetTop</script>
</div>
|