+ 9
[SOLVED] How to create a div tag with class inner header with will contain three div element .
Anyone tell me how create div tag
2 Réponses
+ 6
<div class="inner header">
<div></div>
<div></div>
<div></div>
</div>
Well you should go through HTML course in here ,if you couldn't figure out how to do this simple thing!!
+ 3
simply...
<div class= "inner_header">
<div></div>
<div></div>
<div></div>
</div>
NOTE: I used an underscocre " _ "instead of white spacing , Why? Because using white spacing, I am trying to assign 2 classes to the div element
<div class= "inner header"> </div>
so your div will have two classes: inner and header