Specific class with anchor css -


i trying override style on following html:

<a class="ui-state-default" href="#">7</a> 

the issue ui-state-default class used in many other places cannot update it. have tried following no effect.

.ui-state-default {      width:27px !important; }  .ui-state-default: {     width:27px !important; }  a.ui-state-default {      width:27px !important; } 

how can target 1 anchor tag style change?

well not idea put inline css if don't have onther way try inline css this: <div class="ui-state-default" style="width:24px !important;">your stuff</div>

the main part style="width:27px !important;" put in html markup.

may works .ui-state-default * { width:27px !important;}


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -