Alternative Stylesheet for Acronym: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
m (Text replacement - "Category:WebDesign" to "Category:Design")
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
縮寫的 CSS 樣式
'''Problem''':  
'''Problem''':  


Line 25: Line 27:


=== Other approach: add link to the wiki node/page ===
=== Other approach: add link to the wiki node/page ===
<span title="Personal Knowledge Management" class="acronym" style="cursor: help;border-bottom: 1px dashed #000;">[[PKM]] (?)</span>
<span title="Personal Knowledge Management" class="acronym" style="cursor: help;border-bottom: 1px dashed #000;">[[Personal Knowledge Management|PKM|]] (?)</span>


<pre>
<pre>
<span title="Personal Knowledge Management" class="acronym" style="cursor: help;border-bottom: 1px dashed #000;">[[PKM]] (?)</span>
<span title="Personal Knowledge Management" class="acronym" style="cursor: help;border-bottom: 1px dashed #000;">[[PKM]] (?)</span>
</pre>
</pre>


=== add link to the wikipedia page ===
=== add link to the wikipedia page ===


<span title="Internet Control Message Protocol" class="acronym" style="cursor: help;border-bottom: 1px dashed #000;">ICMP</span>([http://zh.wikipedia.org/wiki/ICMP ?])
<span title="Internet Control Message Protocol" class="acronym" style="cursor: help;border-bottom: 1px dashed #000;">[http://zh.wikipedia.org/wiki/ICMP ICMP](?)</span>




Line 44: Line 44:




[[Category:WebDesign]] [[Category:MediaWiki]]
[[Category:Design]] [[Category:MediaWiki]]

Latest revision as of 10:32, 16 May 2022

縮寫的 CSS 樣式

Problem:

<abbr>(abbreviation, 縮寫)</abbr> and <acronym>(首字母縮略字) </acronym>

tags/markup was not work at old version of Mediawiki (v.1.6.9 bug) but abbr tag works in version 1.16.0)

  • <ACRONYM title="High Technology">Hi-Tech</ACRONYM>
  • WWW
MediaWiki v.1.6.9



Solution[edit]

Alternative Stylesheet[edit]

  • Hi-Tech
 <span title="High Technology" class="acronym">Hi-Tech</span>

 abbr, acronym, span.abbr, span.acronym {
  cursor: help;
  border-bottom: 1px dashed #000;
}


Other approach: add link to the wiki node/page[edit]

PKM| (?)

<span title="Personal Knowledge Management" class="acronym" style="cursor: help;border-bottom: 1px dashed #000;">[[PKM]] (?)</span>

add link to the wikipedia page[edit]

ICMP(?)


further reading