Content deleted Content added
Tags: Mobile edit Mobile web edit
Tags: Mobile edit Mobile web edit
Line 46:
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A MOBILE DEVICE!</div>
</mobileonly>
 
Here is a similar html structure with block elements that will only show on mobile, using <code>&lt;onlymobile&gt;</code> tag:
<onlymobile>
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A MOBILE DEVICE!</div>
</onlymobile>
 
Here is a block element that should only show on desktop, using <code>&lt;nomobile&gt;</code> tag:
Line 56 ⟶ 51:
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A DESKTOP DEVICE!</div>
</nomobile>
 
Why are desktop only elements showing on mobile?
 
[[it:Utente:Johnrdorazio]]