You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One hack that you can use is that you put a nav in the footer and put the buttons in a div or ul. You can then use an empty div as the first child of nav, which will move the buttons (second child) to the right.
According to the docs one can create Dialogs-like-looking-Elements without the Popup-semantics by omitting the
<dialog>
tag and only use<article>
:Current Behavior
Unfortunaltely the Buttons are rendered to the left side in this case. When embracing the article by a dialog the buttons are rendered to the right.
Expected Behavior
I expect
<article>
without an enclosing<dialog>
renders the same way (i.e. the buttons to the right)I think the problem is this line as it is part of a selector
dialog > article > footer
instead of simplyarticle > footer
.Maybe the whole footer section should be moved out of the dialog selector?!?
Reproduction URL
https://jsfiddle.net/owgcpb4j
Environment
Windows 11, Firefox, PicoCSS latest (v2)
The text was updated successfully, but these errors were encountered: