시작 : 4.0/5.0
오늘은 아침운동을 스킵했다. 그래서 그런지 여유도 생기고 기분도 맑다?!
아침 운동을 하면서 아침에 몰입하는 시간이 적어지는 것에 대해서 불편함이 있었다. 운동시간 조정을 생각해보아야겠다.
1) borderbox는 padding등을 설정하더라도 설정해준width height 크기를 넘지 않게 해준다.
이해했다. 그런데 만약에 padding 크기가 기본width 크기를 넘으면 어떻게 될까? 생략될까? 아니면 더 커질까?
정답은 더 커진다.
box-sizing: border-box가 하는역할은
원래width밖이 아니라, width안에서 생기도록 하는 것.
그것이 안에서 넘칠때 나갈수 있음.
1. 요소 정렬
2) flex > 부모요소에 display:flex를 설정하고,
justify-content:center;
-> 하위 레이아웃 또는 div 안의 요소정렬에 사용
2) flex > 부모요소에 display:flex를 설정하고,
align-items:center;
-> 하위 레이아웃 또는 div 안의 요소정렬에 사용
2. 텍스트정렬
p태그 등에
text-align:center로 정렬한다.
1) 크기, 위치정하기에 관하여
2) 박스 디자인에 관하여
3) 글자 디자인에 관하여
1) 크기, 위치에 관하여 (input과 동일)
2) 박스 디자인에 관하여
3-1) 글자 디자인에 관하여 (박스 안의 글자 디자인 상세히 함)
3-2) 글자 위치, 정렬에 관하여
display : flex;
justify-content : center;
align-items : center;
4) 기타
- 적용 전 요소에 position:relative가 있어야함
//왜냐, 그 위치를 기준으로 뭔가를 만들꺼니까
content : "" //빈컨텐츠 생성
background: rgba(0,0,0,.5)
position: absolute;
top : 0;
left : 0;
width:100%;
height:100%;
background-image:url();
background-repeat:no-repeat;
background-position: left bottom;
background-size: cover;
속성 선택하기
#sign-form li:last-child { //마지막 요소 선택하기
#sign-form [type="submit"] { //속성 선택하기
const thisIsButton = document.getElementsByClassName('login-btn')[0];
const thisIsPwRe = document.getElementById('re-password');
const password = document.getElementById('password');
const a = function() {
const password = document.getElementById('password').value;
const rePassword = document.getElementById('re-password').value;
if (password && rePassword) {
thisIsButton.style.background="yellow"}
if (!password || !rePassword) {
thisIsButton.style.background=""}
}
password.addEventListener('keyup',a);
thisIsPwRe.addEventListener('keyup',a);
[html]
<div class="login-container">
<input type="password" id="password" placeholder="비밀번호" />
<input type="password" id="re-password" placeholder="비밀번호 확인" />
<button class="login-btn">로그인</button>
<p class="alert"></p>
<p>key code: <span id="code"></span></p>
</div>
<script src="index.js"></script>
* {
box-sizing: border-box;
}
.login-container {
width: 200px;
margin: 20px auto;
}
.login-container input {
width: 100%;
height: 30px;
margin-bottom: 5px;
padding-left: 10px;
}
.login-btn {
width: 100%;
height: 30px;
text-align: center;
font-size: 14px;
background-color: #659672;
color: white;
}
.login-btn:hover {
cursor: pointer;
opacity: 0.85;
}