【CSS】 每日一练 20210322

最终效果

【CSS】 每日一练 20210322_第1张图片
源码

关键技术点

水平垂直居中

首先把需要居中元素的容器设置高度,然后设置元素的top、left属性为50%,最后使用transform拉回元素的50%宽高,另外一定要设置position属性为relative。

html, body, .container{
  height: 100%;
}

.login-wrapper{
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

文本框去掉轮廓线

未去掉轮廓线的文本框的效果如下图
【CSS】 每日一练 20210322_第2张图片
去掉轮廓线的文本框的效果如下图
【CSS】 每日一练 20210322_第3张图片

outline: none;

文本框禁止显示历史输入内容

源代码




  
  
  
  
  Document


  
* {
  padding: 0;
  margin: 0;
  font-family: 'Open Sans Light';
  letter-spacing: 0.05em;
}

html,
body {
  height: 100%;
}

.container {
  height: 100%;
  background-image: linear-gradient(to right, #fbc2eb, #a6c1ee);
}

.login-wrapper {
  background-color: #fff;
  width: 250px;
  height: 500px;
  border-radius: 15px;
  padding: 0 50px;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-wrapper .header {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 200px;
}

.login-wrapper .form-wrapper .input-item {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border: 0;
  padding: 10px;
  border-bottom: 1px solid rgb(128, 125, 125);
  font-size: 15px;
  outline: none;
}

.login-wrapper .form-wrapper .input-item::placeholder {
  text-transform: uppercase;
}

.login-wrapper .form-wrapper .btn {
  text-align: center;
  padding: 10px;
  width: 100%;
  margin-top: 40px;
  background-image: linear-gradient(to right, #a6c1ee, #fbc2eb);
  color: #fff;
}

.login-wrapper .msg {
  text-align: center;
  line-height: 80px;
}

.login-wrapper .msg a {
  text-decoration-line: none;
  color: #a6c1ee;
}

参考资源

bilibili
520设计网

你可能感兴趣的:(css)