Tagged Questions
1
vote
2answers
179 views
How to position divs next to each other and under each other?
This is probably is a stupid question and it's really easy to solve, but I am having trouble doing so. My question is, how do I position the two last sections (shown in the picture) below the first ...
0
votes
0answers
705 views
<section> End tag section seen, but there were open element [closed]
I've got an blog with 2 sections.
In the source of my code the sections are both opend and closed.
Why does w3c validator say I'm missing an open element?
My blog (hmtl5):
http://blog.tatof.nl
...
1
vote
3answers
455 views
html5 set up div width bigger than body width
I set body {margin: 0 auto; width: 900px;}
100% width of display
I want one of div (or section) inside that body to be 100% of display (not its parent 900px, but more).
What styles should be ...
0
votes
3answers
939 views
html5 section with two horizontal divs
I need a <section></section> that consists of the left and the right parts. The left part is only a single string—the date. The right part should contain something like:
...
1
vote
1answer
165 views
Heading within a div, within a section
Since the div element in html5 has no special semantic meaning, and can be used for styling purposes, is an arrangement like this OK?
<section>
<div>
<h2>Some title</h2>
...
0
votes
2answers
252 views
HTML 5 - Section - Div - Header - can a div be placed between section and header?
I have this section and, for layout proposes I would need two divs inside that section. Of of them, should wrap the header part of section.
So:
<section>
<div id="layout-stuff">
...
0
votes
2answers
112 views
Difference between heading inside section or before it in HTML5
In HTML5, what is the difference between a section with a heading as child element and a section which is the next sibling of a heading element? Does the same difference hold for div elements instead ...
2
votes
1answer
258 views
div or section for forms with a heading in html5?
I just want to know the correct way of putting a form on a page with html5. I can't seem to find anything regarding forms.
My page is a contact page with the content in an article element with ...
66
votes
6answers
20k views
What is the difference between <section> and <div>?
What is the difference between <section> and <div> in HTML? Aren't we defining sections in both cases?
Thanks.
1
vote
3answers
244 views
html section or div?
My website has a profile page. I have something like:
<h1>Foo bar profile</h1>
<div>
<h2>Address</h2>
<p>Foo bar street, 55</p>
<p>Foo city</p>
...
10
votes
3answers
1k views
Html5 section or not to section?
I'm learning about HTML5, and honestly I can't say I'm really impressed. Semantics are nice and all, but I think that they introduced new elements with a very thin line between them, and a even ...