div#id_div_allposts {
width: 100%;
}
div.class_div_post {
width: 100%;
}
div.class_div_editdelete {
width: 100%;
}
How can i write it in one line ?
And what's the way to select a html tag with id and class ?
How can i write it in one line ? And what's the way to select a html tag with id and class ? |
|||||
|
|
All you have to do is separate them with a comma e.g
|
|||
|
|
You can group multiple selectors in Note: The comma starts an entirely new selector from the very start. |
|||
|
|
|
Use the comma to separate multiple declarations
Selecting an html tag with and id and class would be
|
|||
|
|
|
Try this:
or assuming that you want all div to have width 100% then...
|
||||
|
|