blob: d03174aa9464d2f07ee3cc09456ae82ae2e0690e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<style>
#target {
border-left: solid;
border-top: solid;
transform: rotate(180deg);
width: 100px;
height: 100px;
margin: 50px;
}
</style>
The following shape should look like: _|
<div id="target"></div>
|