Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebStorm autocomplete html code

Tags:

webstorm

I'm searching for shortcut in WebStorm for auto completing my html code. So in my case if I write code like .row and press something it should automatically write <div class="row"></div>.

like image 602
Valor_ Avatar asked Oct 23 '16 17:10

Valor_


1 Answers

You can use the Tab key to auto-complete the code. For example:

Write .row#row and press Tab key will make <div class="row" id="row"></div>.

I think this would help.

like image 176
Jaied Avatar answered Oct 30 '22 12:10

Jaied