html - Can HTML5 <aside> be displayed in the bottom of the document? -


i displaying articles on document, , displaying links other articles @ bottom.

html looks this:

<article>...</article> <article>...</article> ... <article>...</article>  <aside>  other recent articles  <div> ... </div> </aside> 

i think links other articles should , because defined in mdn as:

a section of page content connected tangentially rest, considered separate content.

but name <aside> seems imply element should either on left or right side. can in bottom?

with html, should think of usage of tags structural, not presentational.

so don't think of <aside>'s name physical description. think of in terms of purpose in structuring content: associate tangentially related content main content. has nothing it's placed on physical page design.

if you're designing page media queries, example, bet mobile view isn't going put <aside> on either side of screen because there not enough room. you'll position <aside> content after main content. when scale desktop-sized screen, have plenty of room put content on left or right side (if want, you're not forced to!).

i think on shakespeare's usages of asides: characters pause main play talk directly audience thinking or going on. (kevin spacey's character lot in house of cards too.)

update: looked definition of word "aside":

a remark not directly related main topic of discussion.

"the recipe book has little asides importance of home , family"


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -