1
For my example I will use a CSS class called . item
.item{
width:100%;
}
So, how to change this property of this element on some specific pages?
for example, in the index page qro width 100%, in the contact page qro 90%, in the location want 20%.
how to do this without having to create one for each?
I think you need to create a class for each page, for index Voce creates
.item-index{ width:100%; }
, for contact.item-contato{ width:90%; }
and for localization.item-localização{ width:20%; }
– Pedro Henrique Kuzminskas