If you just create a div with no content, the div self closes instead of adding the closing tag. ``` php $container = html::div(, 'class','container'); ``` outputs: ``` html <div class="container"/> ``` instead of: ``` html <div class="container"></div> ```
If you just create a div with no content, the div self closes instead of adding the closing tag.
outputs:
instead of: