blob: fb4a55510afdf3293e0952c8b9596f8ee25979bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<style>
#target::marker {
content: 'content';
}
#target {
display: list-item;
margin-left: 200px;
}
</style>
<div id='target'></div>
</html>
|