Search
 
SCRIPT & CODE EXAMPLE
 

HTML

how to save time writing html

div#div-id <!-- Create a div element with the id: div-id --> 
div.div-class <!-- Create a div element with the class: div-class -->
div*10 <!-- Create 10 div elements -->
div{CSS} <!-- Create a div element with innerHTML: 'CSS' -->
div+span <!-- Create a div element and a span element -->
div>div <!-- Create a parent div element with a child div element -->
div[onclick] <!-- Create a div element with the onclick attribute -->
$ <!-- When you combine it with the innerHTML & multiply or with --> 
  <!-- the id & class shortcuts it's really useful -->

<!-- Example --> div#div-${$}*3
<div id="div-1">1</div>
<div id="div-2">2</div>
<div id="div-3">3</div>

<!-- You can also combine them: -->
div#ABC.div-class>span{This is how to save time when coding HTML}+p{shortcuts}

<!-- this will generate: -->
<div id="ABC" class="div-class">
  <span>This is how to save time when coding HTML</span>
  <p>shortcuts</p>
</div>

<!-- These shortcuts work in VScode and for other code editors im not sure -->
Comment

PREVIOUS NEXT
Code Example
Html :: why is html so easy 
Html :: tailwind resize none 
Html :: email button html 
Html :: html5 audio tag style 
Html :: underline text in html 
Html :: html image as button submit 
Html :: ionic skeleton 
Html :: html lien téléphone 
Html :: html a href tooltip 
Html :: getmdl 
Html :: how to write a text inside a div 
Html :: whatsapp api 
Html :: HTML DOM innerText 
Html :: comment a div in html 
Html :: how to italicize in html 
Html :: aria-label 
Html :: div side by side css without bootstrap 
Html :: svg marker 
Html :: prevent modal from auto closing when clicked away 
Html :: nicescroll cdn 
Html :: what is rc in version 
Html :: relative vs absolute path html 
Html :: allow multiple select on radio button in html 
Html :: px in server is different from html file 
Html :: cross site scripting 
Html :: auto update time in html 
Html :: variables in url_for flask jinja 
Html :: cnic pattern on input 
Html :: change css angular binding 
Html :: date range picker select date and several weeks 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =