0
How do i creat different ( divs) in one (div) with different classes?
am learning programming the first time
4 Answers
+ 1
For what language?
For html it's <div class=" classone classtwo"></div>
And the css for selecting these elements would be .classone .classtwo{ : ; }
look at css diner AND READ the right hand side of the exercises to learn css selectors in detail
+ 1
So to style an element that is both class1 and class2 there needs to be a space between the classes in the div class=" "...
If you want to style two separate classes the same way, then its class1,class2 ie: the comma is like saying class1 and class2.
if you actually go and READ css diner selectors (Google it) then you'll understand selectors better
+ 1
If you mean to nest multiple <div> with different classes in a particular <div>, then you can easily do this:
<div class="outer-div">
<div class="inner-div1"></div>
<div class="inner-div2"></div>
<div class="inner-div3"></div>
</div> <!-- outer-div -->
Assuming you have the CSS classes set.
The term "nest" is commonly used to describe a means for placing single/multiple stuff within another, just like there can be a single bird or multiple birds in a bird nest.
0
but throw more light please