Topic on Talk:Reading/Web/Projects/Mobile Page Issues

Jump to navigation Jump to search
Line 5: Line 5:
 
For instance
 
For instance
   
<code>
+
<pre>
 
<div class="m-elephant"></div>
 
<div class="m-elephant"></div>
</code>
+
</pre>
   
 
In Chinese/Japanese might be
 
In Chinese/Japanese might be
<code>
+
<pre>
 
<div class="m-大象"></div>
 
<div class="m-大象"></div>
</code>
+
</pre>
   
 
To avoid having to localise class names, we're attempting to standardise on a single class across all the wikis.
 
To avoid having to localise class names, we're attempting to standardise on a single class across all the wikis.
   
 
So in the above case if m-elephant is the "standard", the markup for Japanese/Chinese might become:
 
So in the above case if m-elephant is the "standard", the markup for Japanese/Chinese might become:
<code>
+
<pre>
 
<div class="m-elephant m-大象"></div>
 
<div class="m-elephant m-大象"></div>
</code>
+
</pre>