From 21edb9cbd004f2d484777b54a0006d7c40d98f76 2012-06-12 09:35:18 From: Jez Ng Date: 2012-06-12 09:35:18 Subject: [PATCH] Fix styling of superscripts and subscripts. Closes #1924. --- diff --git a/IPython/frontend/html/notebook/static/css/boilerplate.css b/IPython/frontend/html/notebook/static/css/boilerplate.css index 062faf6..2b1535f 100644 --- a/IPython/frontend/html/notebook/static/css/boilerplate.css +++ b/IPython/frontend/html/notebook/static/css/boilerplate.css @@ -34,6 +34,9 @@ time, mark, audio, video { vertical-align: baseline; } +sup { vertical-align: super; } +sub { vertical-align: sub; } + article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;