오늘은 이미지 요소에 대해 알아보았습니다.
<!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" />
<title>Hubble</title>
<link rel="stylesheet" href="./normalize.css" />
<link rel="stylesheet" href="./style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section class="products">
<h1>Hubble space telescope</h1>
<p class="paraghraph">30 Years of Discovery</p>
</section>
</body>
</html>
여기 내 CSS 코드가 있습니다.
html {
font-size: 62.5%;
}
body {
font-family: Poppins, Arial, Helvetica, sans-serif;
}
h1 {
font-weight: 900;
font-size: 8rem;
text-transform: uppercase;
text-shadow: 2px 2px 0 #000;
word-spacing: 1.5rem;
}
.products {
background: url(./jeremy-thomas-E0AHdsENmDg-unsplash\ .jpg) no-repeat;
background-size: cover;
}
.products {
align-items: center;
background: url(./jeremy-thomas-E0AHdsENmDg-unsplash\ .jpg);
background-size: cover;
color: #fff;
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
padding: 1rem;
text-align: center;
}
.products .paraghraph {
background: rgba(0, 0, 0, 0.6);
font-size: 3rem;
font-weight: 300;
letter-spacing: 1.5px;
padding: 1.5rem;
}
다음은 출력입니다.
Reference
이 문제에 관하여(오늘은 이미지 요소에 대해 알아보았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ahtshamajus/today-i-learned-about-image-elements-3mk1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)