20210716

choigyeongshin·2021년 7월 16일

학습한 내용

덴마크쇼핑몰

상단부분 pc버전 레이아웃

/* 1em= 16px; */
@media (min-width: 752px) {
	#header {
		position: fixed;
		width: 100%;
		height: 80px;

		top: 0;
		left: 0;

		z-index: 9999;
	}

	#header h1 {
		width: 50%;
	}

	#header h1 .logo {
		width: 280px;
		height: 80px;
	}

	#header .logo img {
		margin-top: 30px;
	}

	#header .buttons {
		position: absolute;
		width: 50%;

		left: 50%;
		top: 0;
	}

	#header .buttons li {
		height: 80px;
	}
}

본문 모바일

.main-content .product-group-link {
	position: relative;
	display: inline-block;
	/*float: left;*/

	width: 100%;
	height: 56.25%;
	border: solid 10px red;

	overflow: hidden;
}

.main-content .product-group-link img {
	width: 100%;
	height: 100%;
}

.main-content .product-group. link-text {
	position: absolute;

	left: 25px;
	bottom: 25px;

	color: black;
}

본문 pc버전

@media (min-width:  47em) {
	.main-content {
		padding-top: 80px;
	}
}

@media (min-width: 60em) {
	.main-content {
		overflow: hidden;
	}
	.main-content .product-group-link {
		float: left;
		width: 50%;
		height: 28.123%;
	}
}

하단 footer 모바일

#footer {
	position: relative;
	background-color: yellow;

	padding-bottom: 66px;
}

#footer .left-nav {
	padding-top: 20px;
	text-align: center;
}

#footer .left-nav li {
	padding: 5px 0;
}

#footer .right-methods li {
	display: inline-block;
	padding: 7px 4px;
}

#footer .right-methods .payment-icon {
	display: inline-block;

	width: 30px;
	height: 20px;
}

#footer .right-methods .payment-icon.one {
	background-color: black;
}

#footer .right-methods .payment-icon.two {
	background-color: red;
}

#footer .right-methods .payment-icon.three {
	background-color: pink;
}

#footer .right-methods .payment-icon.four {
	background-color: blue;
}

#footer .right-methods .payment-icon.five {
	background-color: gray;
}

#footer .to-top-button {
	position: absolute;
	display: block;

	width: 66px;
	height: 66px;
	background-color: green;

	bottom: 0;
	left: 50%;
	margin-left: -33px;
}

하단 pc 버전

@media(min-width: 60em) {
	#footer .left-nav {
		float: left: ;

		width: 50%;
		background-color: yellow;
		text-align: left;

		padding-top: 32px;
		padding-left: 40px;
	}

	#footer .right-methods {
		float: right;

		width: 0;
		background-color: yellowgreen;

		margin: 0;
		padding-top: 32px;
		padding-right: 40px;

		text-align: right: ;
	}


	#footer ul, #footer li, #footer h3 {
		display: inline-block;
		vertical-align: middle;
	}

	#footer .left-nav a {
		font-size: 14px;
		padding: 0 5px;
		line-height: 20px;
	}

	#footer .right-methods li {
		padding: o 4px;
	}

	#footer h3 {
		padding-right: 10px;
	}
}

학습내용 중 어려웠던 점

사소한 것이지만 기호를 잘못 쓴다던가 빠뜨리는 경우가 발생해 결과물이 나오지않아 잘못된 부분을 찾는데 시간이 걸렸다.

해결방법

부분적으로 나누어 사소한 부분이라도 제대로 확인한 후 다음 단계로 넘어감.

학습소감

첫번째 시간에 보았던 사이트들을 직접 실습하는것이 재미있고 신기했다.

0개의 댓글