blob: 154c4611a00decf6b902481c21cdc508830fc95d (
plain)
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
|
<html>
<head>
<style>
p::before {
content: "Some text" " that should be at an (x,y) of (300,300)";
position: absolute;
left: 300px;
top: 300px;
}
div::after {
float: right;
width:100px;
height:100px;
background-color:green;
color: green;
content: "Invisible";
}
</style>
</head>
<body>
<p></p>
<div>In this paragraph, there should be a right floating green ::after block. It should be ok to do this.
</div>
|