0

Is it need to set "float: left" to header?

I have a problem about header and other divs positions.

28th Feb 2017, 2:05 PM
David Goodwin
David Goodwin - avatar
8 Respostas
+ 4
This is the normal behavior of the 'float' property ^^ << The float CSS property specifies that an element should be taken from the normal flow and placed along the left or right side of its container, where text and inline elements will wrap around it. >> ( https://developer.mozilla.org/en-US/docs/Web/CSS/float ) What are you expecting by adding 'float:left;' to your header? It seems that's not the good way to do it :P ... ( and instead of reposting for saying "lol sry that no tabs", you could edit your post and reindent it: what do you believe? if you don't, we must do that, in addition to help you... that's not motivating, because unrespectuous and lazyness attitude )
1st Mar 2017, 3:39 PM
visph
visph - avatar
+ 3
Can you explain your problem in detail as I couldn't get it
28th Feb 2017, 2:12 PM
Chirag Bhansali
Chirag Bhansali - avatar
+ 3
Do you have the code somewhere? Please share
28th Feb 2017, 2:28 PM
Chirag Bhansali
Chirag Bhansali - avatar
+ 1
Yes
28th Feb 2017, 2:38 PM
David Goodwin
David Goodwin - avatar
0
When I wrote "float: left" in header's style, header fell a little bit down and the next div rose up till ceiling. I don't know why that happened coz I started to learn html+css recently.
28th Feb 2017, 2:26 PM
David Goodwin
David Goodwin - avatar
0
html code: <header class="left"> (Links is here) </header> <div class="content">         <div class="img">             (Image)         </div> </div> css code: header {     display: block;     height: 85px;     width: 100%;     background: #f7f7f7; } .img {     height: 335px;     width: 600px;     text-align: center;     margin: 20px auto;     border-bottom: 65px solid #fff2d9;     border-radius: 50px;     background: url(../images/img1.jpg);     background-size: cover;     box-shadow: 0 0 10px; } .left {     float: left; }
28th Feb 2017, 2:38 PM
David Goodwin
David Goodwin - avatar
0
lol sry that no tabs
28th Feb 2017, 2:39 PM
David Goodwin
David Goodwin - avatar
0
I am sorry, but I began to use Solo learn recently and didn't know some things in this app. And now I have other problem with fixed position of my header.
1st Mar 2017, 4:51 PM
David Goodwin
David Goodwin - avatar