오늘은 Forms CSS 요소에 대해 알아보았습니다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
/>
<title>form</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="container">
<form>
<h1>Please sign in</h1>
<div class="div-container">
<label>
<input
type="email"
id="email"
placeholder="Email address"
autofocus
/>
</label>
<label>
<input type="password" id="password" placeholder="Password" />
</label>
<label for="">
<input type="checkbox" name="" id="" />Rememeber me
</label>
<button class="btn">Sign in</button>
<p>Copyright ©2020</p>
</div>
</form>
</div>
</body>
</html>
여기 내 CSS 코드가 있습니다.
body {
background-color: #f5f5f5;
line-height: 3;
}
label {
display: block;
}
.container {
width: 100%;
}
form {
width: 50%;
padding: 5rem;
margin: 0 auto;
}
h1 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #000;
font-size: 23px;
text-align: center;
}
.btn {
border-radius: 20px;
background: #0d6efd;
text-align: center;
width: 200px;
padding: 10px;
color: #fff;
border: #ced4da;
}
#email {
width: 200px;
padding: 10px;
}
#password {
width: 200px;
padding: 10px;
}
input {
border: 1px solid #ced4da;
background-color: #fff;
border-radius: 5px;
}
.div-container {
width: 25%;
margin: 0 auto;
}
#email:focus,
#password:focus {
/* box-shadow: #b9d3fa; */
outline: 0;
border-color: #86b7fe;
}
다음은 출력입니다.
Reference
이 문제에 관하여(오늘은 Forms CSS 요소에 대해 알아보았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ahtshamajus/today-i-learned-about-forms-css-elements-1709텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)