tag and css font-family

前端 未结 5 706
一生所求
一生所求 2020-12-31 01:01

I have html with code below:

                                      |       Date Offense |       Count |
   Title, Section & Nature of Offense         


        
5条回答
  •  渐次进展
    2020-12-31 01:42

    The default definition for the pre tag uses the monospace font (like in console).

    font-family: monospace;
    

    It is possible your definition suggests a different type of a font which is why your nice design breaks. You must either specify a system-specific monospace font (e.g. 'Lucida Console') or the fall-back alias 'monospace';

提交回复
热议问题