I have some divs where your Css are the same, but their identifiers are different due to Jquery.
I need to simplify the CSS that repeat. Is it possible?
See that they are all the same.
<style>
#owl-demo .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#owl-demo2 .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#owl-demo3 .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#owl-demo4 .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#owl-demo5 .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#owl-demo6 .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#owl-demo7 .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#owl-demo8 .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#owl-demo9 .item{
background: #42bdc2;
padding: 3px 0px;
margin: 5px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
#div1 {
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow: clip;
}
</style>