前言
觉得原来的超链接样式不是很符合我的审美,所以就改了一下,本文章用于记录防止遗忘咋写的
HTML
CSS
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| body { width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; }
a { text-decoration: none; color: #000; transition: all 0.3s; position: relative; }
a::before { content: " "; position: absolute; bottom: -3px; width: 100%; height: 2px; transition: all 0.3s; transform: scaleX(0); background: rgb(255, 133, 153); }
a:hover { color: rgb(255, 133, 153); }
a:hover::before { transform: scaleX(1); }
|