css实现可自动排序的待办事项勾选效果代码

代码语言:html

所属分类:其他

代码描述:css实现可自动排序的待办事项勾选效果代码

代码标签: css 自动 排序 待办 事项 勾选

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
  
<style>
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100;400;800&display=swap');
body, html { height: 100%; font-family: 'Onest', sans-serif; font-size: 18px;}

body { margin: 0px; display: flex; align-items: center; justify-content: center; background-image:radial-gradient(#dff9fb 20%, #9dc7c9);}
h1 { font-weight: 100; }
.visually-hidden { position: absolute; left: -100vw; }

.todo_app { background-color: rgba(0,0,60,0.3); border-radius: 10px; padding: 1em 0.2em 0.2em 0.2em; text-align: right; color: #fff;}
.todo_app input { margin-right: 1em;}

.autosort_label { position: relative; cursor: pointer; }
.autosort_label:before.........完整代码请登录后点击上方下载按钮下载查看

网友评论0