Search code examples
jssor

How would i access this tag <div u="slides" > through external CSS ?


I m having issues in manipulating Cascading Style Sheets of this particular tag.I want an external Cascading Style Sheets to change its styling.


Solution

  • You can specify css for 'slides' container in following manner,

    <div id="yourid" class="yourclass" u="slides" ...>
    
    <style>
    #yourid {
    }
    
    .yourclass {
    }
    </style>