728x90
html
<div class="end-box">
<p>이벤트 종료</p>
</div>
css
.end-box {
display: flex;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
align-items: center;
}
.end-box p {
color: #fff;
font-size: 4.8rem;
font-weight: 700;
line-height: 5.2rem;
margin: 0 auto;
}
+ a 태그가 추가될때
html
<ul class="user-tab-style-title">
<li class="user-tab-style-title-on w50"><a href="#">이벤트01</a></li>
<li class="w50"><a href="#">이벤트02</a></li>
</ul>
css
.user-tab-style-title li {
display: flex;
float: left;
border: 1px solid #000;
box-sizing: border-box;
background-color: #fff;
align-items: center;
}
.user-tab-style-title li a {
display: block;
width: 100%;
padding: 7.7% 0;
box-sizing: border-box;
color: #010101;
font-size: 3rem;
font-weight: 700;
line-height: 4rem;
text-align: center;
}
'DEVELOP' 카테고리의 다른 글
[javascript & jQuery] 팝업 쿠키 보이기 (0) | 2018.07.18 |
---|---|
[javascript & jQuery] nput 박스 숫자 입력시 자동 포커스 이동 (2) | 2018.07.13 |
[정보처리기사] FIFO(FCFS) 스케줄링 평균 반환 시간 구하기 (0) | 2018.04.18 |
[SASS] 이용법 2 (0) | 2017.12.17 |
[SASS] 이용법 1 (0) | 2017.12.17 |