
Tengo dudas con flexbox
Publicado por Julio Cesar (14 intervenciones) el 02/07/2017 07:11:48
Me gustaría que alguién me ayude con un código. Tiene que ver con flexbox y el posicionamiento.
Valora esta pregunta


-1






<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta robots="no-follow">
<title>LCHANNEL</title>
<link rel="stylesheet" type="text/css" href="lchannel.css">
</head>
<body>
<!--Aquí empieza el header--><header>
<img src="logolc.png" id="logo">
<h1>LCHANNEL</h1>
</header>
</body>
</html>
body{background-color: #000;
}header{width: 95%;
height: 150px; margin:0 auto;background: url(bgsqs.jpg);
background-color: #125;
background-size: 200% 350%;
background-position: center center;
background-repeat: no-repeat;
border: 4px solid #FFF;
border-right: none;
border-left: none;
display: flex;flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
}#logo{
width: 80px; height: 80px;background: #112255;
}h1{background: #000;
width: 400px;color: #fff;
border: 4px solid #FFF;
text-align: center;
font-size: 2.5em;
font-family: "Agency FB", Arial, sans-serif;
border: 4px solid #FFF;
border-radius: 15px 15px 40px 40px;
height: 50px;}

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta robots="no-follow">
<title>LCHANNEL</title>
<style>
body{background-color: #000;
}header{width: 95%;
height: 150px; margin:0 auto;background: url(bgsqs.jpg);
background-color: #125;
background-size: 200% 350%;
background-position: center center;
background-repeat: no-repeat;
border: 4px solid #FFF;
border-right: none;
border-left: none;
justify-content: center;
text-align:center;
position:relative;}#logo{
width: 80px; height: 80px;background: #112255;
position:absolute; left:0px;}h1{background: #000;
width: 400px;color: #fff;
border: 4px solid #FFF;
text-align: center;
font-size: 2.5em;
font-family: "Agency FB", Arial, sans-serif;
border: 4px solid #FFF;
border-radius: 15px 15px 40px 40px;
height: 50px;display:inline-block;
}</style>
</head>
<body>
<!--Aquí empieza el header--><header>
<img src="logolc.png" id="logo">
<h1>LCHANNEL</h1>
</header>
</body>
</html>






body{background-color: #000;
}header{width: 95%;
height: 150px; margin:0 auto;background: url(bgsqs.jpg);
background-color: #125;
background-size: 200% 350%;
background-position: center center;
background-repeat: no-repeat;
border: 4px solid #FFF;
border-right: none;
border-left: none;
display: flex;flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
}#logo{
width: 80px; height: 80px;background: #112255;
display : inline-flex;
}h1{background: #000;
padding-left: 10%;
padding-right: 10%;
color: #fff;
border: 4px solid #FFF;
text-align: center;
font-size: 2.5em;
font-family: "Agency FB", Arial, sans-serif;
border: 4px solid #FFF;
border-radius: 15px 15px 40px 40px;
height: 50px;display : inline-flex;
}
