-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS混淆HTML的简单DEMO
34 lines (33 loc) · 928 Bytes
/
CSS混淆HTML的简单DEMO
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
26
27
28
29
30
31
32
33
34
<html>
<head>
<style>
#s{
position: relative;
}
b{
position: absolute;
top:100px;
font-size: 30px;
overflow: hidden;
display: block;
height: 40px;
background: rgb(71, 8, 40);
}
i{
font-style: normal;
}
</style>
</head>
<body>
<div id='s'>
<b style="width:80px;left:250px">
<i style="width: 16px;">1</i>
<i style="width: 16px;">2</i>
<i style="width: 16px;">3</i>
<i style="width: 16px;">4</i>
</b>
<b style="width: 16px;left:250px">5</b>
<b style="width: 16px;left:280px">6</b>
</div>
</body>
</html>