+ 1
How can I use an aside syntax in a web browser. I try using it but it not working can someone help me out
Aside,the details that displays on the right hand of a web browser
1 ответ
+ 3
the <aside> element/tag is basically an element of type block: it has the same behavior as a <div> by default, and exist mostly for semantical purpose (and avoid having a forest of <div>)...
to display it as you want, you must build the structure that allow styling it (with css) for your needs ;)