
css
tx_xiaobai
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
css步骤条_可滚动
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>步骤条_可滚动</title> <style type="text/css"> ol.steps::-webkit-scrollbar { /* chrome 隐藏滚动条*/ display: none; } .原创 2020-08-18 11:29:43 · 463 阅读 · 0 评论 -
设置meta标签,清除页面缓存
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> <meta http-equiv="Cache" content="no-cache"> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" /> 具体意义,请去htt..原创 2020-06-30 18:25:37 · 307 阅读 · 0 评论 -
input placeholder 修改样式
<input type="text" placeholder="请输入"> <style> ::-webkit-input-placeholder { color: red; font-size: 20px; font-weight: bolder; } </style>原创 2020-06-24 16:25:48 · 149 阅读 · 0 评论 -
css 修改滚动条样式
css样式 div::-webkit-scrollbar{ width:2px; height:10px; } div::-webkit-scrollbar-track{ background: rgb(239, 239, 239); border-radius:2px; } div::-webkit-scrollbar-thumb{ background: #bfbfb...原创 2020-03-24 14:45:15 · 192 阅读 · 0 评论 -
css实现loading效果
一、 <div class="loading"> <span></span> <span></span> <span></span> <span></span> <span></span> </div> .lo...转载 2019-11-19 15:39:17 · 428 阅读 · 0 评论