Johnrdorazio
Joined 5 years ago
Content deleted Content added
Johnrdorazio (talk | contribs) |
Johnrdorazio (talk | contribs) Tags: Mobile edit Mobile web edit |
||
Line 42:
In this very moment you seem to be using a <mobileonly>mobile</mobileonly><nomobile>desktop</nomobile> device.
=== Mobileonly ===
Here is an html structure with block elements that should only show on mobile, using <code><mobileonly></code> tag:▼
==== Inline html ====
Here is a string that should only show on mobile devices: <mobileonly>**I AM A MOBILE DEVICE!**</mobileonly>
==== Block html ====
▲Here is an html
<mobileonly>
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A MOBILE DEVICE!</div>
</mobileonly>
=== Nomobile ===
Here is a block element that should only show on desktop, using <code><nomobile></code> tag:▼
==== Inline html ====
Here is a string that should only show on desktop devices: <nomobile>**I AM A DESKTOP DEVICE!**</nomobile>
==== Block html ====
▲Here is a block element that should only show on desktop, using the <code><nomobile></code> tag:
<nomobile>
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A DESKTOP DEVICE!</div>
</nomobile>
[[it:Utente:Johnrdorazio]]
|