Is any way to close tag block like in Chrome DeveloperTools panel?
.
Code: Select all
<div>...</div>
  <p>...</p>
Moderator: kfury77
Code: Select all
<div>...</div>
  <p>...</p>
Of course I need this option, I talk about to close the tag block (aka element's content)! So when I have a long <div> or any else element's code, for a better look I want to close it like in Chrome DeveloperTools panel:Aivars wrote:If you write <div> then the editor will automatically add </div> unless you have disabled it.
Code: Select all
<body>
<div>...</div>   <!--like this  --> 
<div>...</div>   <!--like this  --> 
 <div>
   <p>...</p>
   <div>...</div>
   <p>Some text</p>  <!--now I want to work only with this paragraph so the rest of elements are closed  --> 
</div>
</body>