Day 28 네이버 연예 뉴스 5 오른쪽 영역

SUN·2021년 8월 4일
0

08월 04일

1. 학습 내용

HTML

<div class="ent-right">
			
			<div class="ent-banner"></div>

			<div id="ent-section-10">

				<div class="title-wrap ent-flex-between">
					<h3>많이 본 TV연예 뉴스</h3>
					<a href="#" class="more">더보기</a>
				</div>

				<ol>
					<li>
						<a href="#">
							<span class="rank">1</span>
							<p>chat baker의 빵집에서는 메탈음악이 흐른다</p>
						</a>
					</li>
                    -10위 까지 복붙하기
					
				</ol>
			</div>

			<div id="ent-section-11">
				<ul>
					<li>
						<a href="">
							<div class="title-wrap ent-flex-between">
								<div class="title-left ent-flex-start">
									<span class="count">14</span>
									<h3>가나다라마바사 아자차카</h3>
								</div>
								<div class="icon-arrow"></div>
							</div>
							<div class="article-content ent-flex-between">
								<div class="content-left">
									<h4>서브 타이틀</h4>
									<span class="source">스타뉴스</span>
								</div>
								<img src="https://via.placeholder.com/70px*70px">
							</div>
						</a>
					</li>
                    - 3개 더 복사
                    
				</ul>

				<div class="bottom ent-flex-between">
					<div class="btn-wrap ent-flex-start">
						<button class="btn btn-prev"></button>
						<button class="btn btn-next"></button>
					</div>
					<a href="#" class="more">더보기</a>
				</div>
			</div>

			<div id="ent-section-12">
				<div class="title-wrap">
					<h3>연예가 HOT 포토</h3>
				</div>

				<ul class="ent-flex-between">
					<li>
						<img src="https://via.placeholder.com/146px*138px">
						<h4>그건 아마 우리의 잘못은 아닐거여ㅑ</h4>
						<span>스타들의 일상</span>
					</li>
                    - 4개로 만들기
				</ul>
			</div>

			<div id="ent-section-13">
				<div class="title-wrap ent-flex-between">
					<h3>연예가 인터뷰</h3>
					<a href="#" class="more">더보기</a>
				</div>

				<div class="heading ent-flex-between">
					<div class="heading-info">
						<h4>모가디슈는 소말리아의 수도인가요?</h4>
						<span class="source">스포츠</span>
					</div>
					<img src="https://via.placeholder.com/70px">
				</div>

				<ul>
					<li><a href="#">피아노를 배우는 것은 좋다피아노를 배우는 것은 좋다피아노를 배우는 것은 좋다</a></li>
					<li><a href="#">피아노를 배우는 것은 좋다</a></li>
					<li><a href="#">피아노를 배우는 것은 좋다</a></li>
					<li><a href="#">피아노를 배우는 것은 좋다</a></li>
					<li><a href="#">피아노를 배우는 것은 좋다</a></li>
				</ul>
			</div>
		</div>

CSS

#ent-main .ent-right {
	float: right;
	width: 324px;

	padding-left: 24px;}

#ent-main .ent-right .ent-banner {
	width: 300px;
	height: 250px;
	background-color: pink;

	border-bottom: solid 1px #000000;

	margin-bottom: 30px;}
    -광고 표시

#ent-main .ent-right #ent-section-10 {
	padding-bottom: 12px;
	border-bottom: solid 1px #e8e8e8;}

#ent-main .ent-right #ent-section-10 .title-wrap {
	margin-bottom: 8px;}

#ent-main .ent-right #ent-section-10 .title-wrap h3 {
	font-size: 16px;}

#ent-main .ent-right #ent-section-10 .title-wrap a {
	font-size: 12px;
	color: #999;}

#ent-main .ent-right #ent-section-10 ol li {
	margin-bottom: 10px;}

#ent-main .ent-right #ent-section-10 ol li .rank {
	font-size: 16px;
	color: #e2458f;

	width: 16px;

	display: inline-block;

	text-align: center;
	vertical-align: middle;}

#ent-main .ent-right #ent-section-10 ol li p {
	display: inline-block;
	width: 270px;

	font-size: 12px;

	vertical-align: middle;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;}


#ent-section-11 ul {
	margin-bottom: 12px;}

#ent-section-11 ul li {
	padding: 14px;

	border-bottom: solid 1px #f2f2f2;}


#ent-section-11 ul li .title-wrap {
	margin-bottom: 10px;}


#ent-section-11 ul li .title-wrap .title-left .count {
	width: 20px;
	height: 15px;

	padding-left: 3px;

	color: #e2458f;
	font-size: 10px;

	border: solid 1px #e2458f;
	margin-right: 8px;}

#ent-section-11 ul li .title-wrap .title-left h3 {
	color: #e2458f;
	font-size: 12px;}

#ent-section-11 ul li .title-wrap .icon-arrow {
	width: 8px;
	height: 12px;

	background-color: #e2458f;}

#ent-section-11 ul li .article-content .content-left {
	width: 200px;}

#ent-section-11 ul li .article-content .content-left h4 {
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	margin-bottom: 6px;}

#ent-section-11 ul li .article-content .content-left .source {
	font-size: 11px;
	color: #a6a6a6;}

#ent-section-11 ul li .article-content img {
	width: 70px;
	height: 70px;
	border: solid 1px #000000;}


#ent-section-11 .bottom .btn-wrap .btn {
	width: 24px;
	height: 24px;
	border: solid 1px #f2f2f2;}

#ent-section-11 .bottom .btn-wrap .btn-prev {
	background-color: grey;
	border-right: none;}

#ent-section-11 .bottom .btn-wrap .btn-next {
	background-color: yellow;}

#ent-section-11 .bottom .more {
	font-size: 12px;
	color: #999;}


#ent-section-12 {
	padding: 20px 0 2px;
	border-bottom: solid 1px #e8e8e8;}

#ent-section-12 .title-wrap {
	margin-bottom: 12px;

padding-top: 12px;

border-top: solid 1px #e8e8e8;}

#ent-section-12 .title-wrap h3 {
	font-size: 16px;}

#ent-section-12 li {
	width: 146px;

	margin-bottom: 19px;}

#ent-section-12 ul li img {
	width: 100%;
	height: 138px;

	border: solid 1px #000000;
	margin-bottom: 9px;}

#ent-section-12 ul li h4 {
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;

	margin-bottom: 5px;}

#ent-section-12 ul li span {
	font-size: 11px;
	color: #898989;}


#ent-section-13 {
	padding-top: 22px;}

#ent-section-13 .title-wrap {
	margin-bottom: 8px;}

#ent-section-13 .title-wrap h3 {
	font-size: 16px;
	color: #e2458f;}

#ent-section-13 .title-wrap a {
	font-size: 12px;}

#ent-section-13 .heading {
	margin-bottom: 8px;}

#ent-section-13 .heading .heading-info {
	width: 210px;}

#ent-section-13 .heading .heading-info h4 {
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;}

#ent-section-13 .heading .heading-info .source {
	font-size: 11px;
	color: #999;}

 #ent-section-13 .heading img {
	width: 70px;
	height: 70px;
	border: solid 1px #000000;}


#ent-section-13 ul li {
	margin-bottom: 8px;
}

#ent-section-13 ul li a {
	display: block;
	/*a태그의 범위를 길게 늘려줌*/
	font-size: 12px;
	color: #222;

	width: 100%;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;}

#ent-section-13 ul li a:before {
	content: '';
	display: inline-block;
	width: 2px;
	height: 2px;

	vertical-align: top;
	background-color: silver;

	margin: 7px 5px 0;}

2. 학습 중 어려웠던 점

이전과 비슷하여 어려운 점은 없었다.

3. 해결 방안

열심히 수업듣기

4. 학습 소감

조금 더 어려워져도 열심히 했으면 좋겠다.

profile
안녕하세요!

0개의 댓글

관련 채용 정보