Jump to content
  • 0

Не выставляется ширина меню


rinatoff
 Share

Question

Как можно растянуть 2ое меню на всю ширину экрана? Сколько пробовал, не выходит. И почему padding-top или margin-top у li или a (2го меню) не выставляется, он заходит за границы 1го меню и ничего не происходит. Может там какой нибудь блок поставить, между ними? Прилагаю фото, что должно получится на выходе, код и ссылку на песочницу(но в песочнице не особо понятно, что происходит).

Песочница: 

https://jsfiddle.net/w4o57kmp/

Фото:

https://ibb.co/igORZv

Код:

<!DOCTYPE html>
<html lang="ru">
<head>
	<meta charset="UTF-8">
	<title>Интернет Магазин</title>
	<link rel="stylesheet" href="css/main.css">
</head>
<body>
	<header>
		<div class="container">
			<div class="head clearfix">
				<a href="#" class= "picture"><img src="img/logo.png" alt="" class="logo"></a>
				<div class="tel">8 (800) <span class="telColor">555 - 55 - 55</span> <span class = "schedule">Ежедневно с 9 - 00 до 19 - 00</span></div>
				<div class="shop">
					<img src="img/shop.png" alt="" class ="img_shop">
					<span class="price basket">Корзина</span>
					<span class="price">Товаров: 0</span>
					<span class="price">На сумму:0</span>
					<span class="price checkout">Оформить заказ</span>
				</div>
			</div>
			<nav>
				<ul class="menu_list">
					<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>
					<li>
						<a href="#">Статьи</a>
					</li>
					<li>
						<a href="#">О нас</a>
					</li>
				</ul>
			</nav>
			<div class="menu_second">
				<ul>
					<li>
						<a href="#">очищение</a>
					</li>
					<li>
						<a href="#"><span>для лица</span><br> classic</a>
					</li>
					<li>
						<a href="#"><span>для лица</span><br> premium</a>
					</li>
					<li>
						<a href="#">для тела</a>
					</li>
				</ul>
			</div>
		</div>

	</header>
	<section>
		<div class="container">
			dasd
		</div>
	</section>
	<section>
		<div class="container">
			asdasdas
		</div>
	</section>
	<section>
		<div class="container">
			asdasd
		</div>
	</section>
	<footer>
		<div class="container">
			
		</div>
	</footer>
</body>
</html>

 

*{
	box-sizing: border-box;
}
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.container {
	width: 100%;
	height: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

header {
	height: 340px;
	background: #DDE6F0;
}

a {
	text-decoration: none;
}

.head {
	width: 100%;
}

.logo{
	padding-top: 51px;
	padding-left: 10px;
}

.picture {
	float: left;
}

.tel {
	float: left;
	margin-top: 120px;
	margin-left: 70px;
	font-size: 25pt;
	font-weight: bold;
	position: relative;
	width: 378px;
}

.telColor {
	color: #006AB3;
	font-size: 30pt;
	position: absolute;
	top: -32px;
	right: 45px;
}


.schedule {
	font-size: 11pt;
}

.shop {
	float: left;
	border-left: 1px solid #B8C0C8;
	padding-left: 26px;
	width: 144px;
	margin-top: 64px;
	position: relative;
}

.img_shop {
	position: absolute;
	top: -15px;
	right: 4px;
}

.price {
	display: block;
	font-size: 14pt;
}


.basket {
	color: #4B88C0;
	padding-bottom: 20px;
}

.checkout {
	color: #4B88C0;
	padding-top: 16px;
}

nav {
	margin-top: 21px;
}

.menu_list {
	width: 100%;
	padding: 0;
	margin: 0;
}


.menu_list li {
	list-style-type: none;
	display: inline;
	border-right: 1px solid #2A6C96;
	width: 100%;
	background: #2BA3D6;
	padding: 11px;
}

.menu_list li:hover {
	background: #167CBA;
	width: 100%;
}


.menu_list li a {
	color: white;
	font-size: 16pt;
	font-weight: bold;
}

.menu_second {
	height: 60px;
	margin-top: 40px;
	padding: 0;

}

.menu_second ul {
	padding: 0;
	display: inline;
	
}

.menu_second li {
	list-style-type: none;
	display: inline;
	background: #106FB1;
	padding: 23px;
	border: 1px solid black;
	
	padding-top: 37px;
    text-align: center;
    padding-bottom: 15px;

}

.menu_second li a {
	display: inline-block;
	font-size: 18pt;
	font-weight: bold;
	text-transform: uppercase;
	color: #DDE6F0;
	
}

.menu_second span {


	font-size: 14pt;
	text-transform: lowercase;
	font-weight: normal;

}


.clearfix:after {
    content: " ";
    display: table;
    clear: both;
}

 

Edited by rinatoff
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy