Как разместить заголовок и кружок по центру экрана, чтобы при масштабировании они были всегда в центре экрана.
Для этого нам нужно отказаться от стилей бутстрапа для них и применить позиционирование.
Выведем блоки за контейнер бутстрапа:
<h1>Hello, world!</h1>
<div class="arrow"></div>
index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<div class="header">
<div class="container">
</div>
</div>
<h1>Hello, world!</h1>
<div class="arrow"></div>
</header>
</body>
</html>
.main.css
header {
background: url(../img/bulgaria.jpg) no-repeat center top / cover;
height: 100vh; /* нужно задать такую высоту */
}
.header {
background: rgba(0,0,0,0.25);
height: 100px;
}
/* Как масштабировать заголовок и ссылку по центру экрана */
h1 {
position: absolute;
top: 50%;
margin-top: -10px;
left: 50%;
margin-left: -121px;
}
.arrow {
width: 30px;
height: 30px;
border-radius: 50%;
background: red;
position: absolute;
bottom: 10%;
left: 50%;
margin-left: -15px;
}
Для этого нам нужно отказаться от стилей бутстрапа для них и применить позиционирование.
Выведем блоки за контейнер бутстрапа:
<h1>Hello, world!</h1>
<div class="arrow"></div>
index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<div class="header">
<div class="container">
</div>
</div>
<h1>Hello, world!</h1>
<div class="arrow"></div>
</header>
</body>
</html>
.main.css
header {
background: url(../img/bulgaria.jpg) no-repeat center top / cover;
height: 100vh; /* нужно задать такую высоту */
}
.header {
background: rgba(0,0,0,0.25);
height: 100px;
}
/* Как масштабировать заголовок и ссылку по центру экрана */
h1 {
position: absolute;
top: 50%;
margin-top: -10px;
left: 50%;
margin-left: -121px;
}
.arrow {
width: 30px;
height: 30px;
border-radius: 50%;
background: red;
position: absolute;
bottom: 10%;
left: 50%;
margin-left: -15px;
}
Комментариев нет:
Отправить комментарий