html - Table content not resized on mobile -
html - Table content not resized on mobile -
i'm working on making website responsive using method similar stacklayout. page works on desktop , adjusts appropriately varying widths; however, on mobile, text contained in tables not resize, , appears smaller other text. style declaration beingness straight applied table width: 100%
, , direct declarations of font-size, text not appear respond. issue prevails no matter size/type of unit applied text. i'm baffled.. , curious whether css problem or result of how table beingness resized. insight much appreciated
css:
class="lang-css prettyprint-override">*, table td { font-family: calibri, sans-serif; font-size: 1.1rem, 1.1em; }
note: it's evident on devices not iphones
separate font size property as
table td { font-family: calibri, sans-serif; font-size: 1.1rem; font-size: 1.1em; }
this might work
html css responsive-design font-size
Comments
Post a Comment