UCLOrengoGroup / cath-tools

Protein structure comparison tools such as SSAP and SNAP
http://cath-tools.readthedocs.io
GNU General Public License v3.0
57 stars 14 forks source link

Alignment HTML isn't rendering with fixed-width font on chrome #36

Closed tonyelewis closed 7 years ago

tonyelewis commented 7 years ago

It's working on Firefox (and I thought it was previously working on Chrome).

Maybe just change:

font-family: courier;

...to something like...

font-family: courier, monospace;
sillitoe commented 7 years ago

Yup, this fix should work fine.

Note: You should always include at least one generic family name in a font-family list, since there's no guarantee that any given font is available. This lets the browser select an acceptable fallback font when necessary.

https://developer.mozilla.org/en/docs/Web/CSS/font-family

tonyelewis commented 7 years ago

Thanks for guidance @sillitoe.