Skip to content

Commit

Permalink
20230227
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangyue0503 committed Feb 27, 2023
1 parent 870fe50 commit 2e60729
Show file tree
Hide file tree
Showing 9 changed files with 1,085 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
*.pem
*.srl
.vscode/
dist/
32 changes: 32 additions & 0 deletions pink/testfont/font/1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="icon-font/iconfont.css">
<style>
input[type=text]{
outline: none;
width:200px;
height:30px;
}
div{
position: relative;
display: inline-block;
}
.icon-arrow_left_line:before{
position: absolute;
right: 10px;
top:10px;
}
</style>
</head>

<body>
<div class="iconfont icon-arrow_left_line">
<input type="text">
</div>
</body>
</html>
Loading

0 comments on commit 2e60729

Please sign in to comment.