登录注册页面效果
代码语言:html
所属分类:表单美化
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>注册页面</title> <style> * { box-sizing: border-box; } html, body { margin: 0; padding: 0; height: 100%; } body { font-family: 'Lato', sans-serif; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background: linear-gradient(243.87deg, #F28FE5 30.6%, #371933 130.6%); overflow: hidden; } input { font-family: inherit; -webkit-appearance: none; -moz-appearance: none; border: 0; border-bottom: 1px solid #AAAAAA; font-size: 16px; color: #000; border-radius: 0; } input[type="text"], input[type="password"] { width: 100%; height: 40px; } button, input:focus { outline: 0; } ::-webkit-input-placeholder { fo.........完整代码请登录后点击上方下载按钮下载查看
网友评论0