How to do something like #Card%{ } in CSS -


this css :

<div id="card0">   <div draggable="true" id="carte">     <div id="no">8</div>     <div id="trefle"></div>   </div>  </div> 

i have card1, card2 ...

i #card%{ } possible?

unquestionably use class this:

<div id="card0" class="card">   <div draggable="true" id="carte0">     <div id="no">8</div>     <div id="trefle"></div>   </div>  </div>  <div id="card1" class="card">   <div draggable="true" id="carte1">     <div id="no">8</div>     <div id="trefle"></div>   </div>  </div>  <div id="card2" class="card">   <div draggable="true" id="carte2">     <div id="no">8</div>     <div id="trefle"></div>   </div>  </div> 

Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -