Home › Forums › CSS › wordpress widget styles › Re: wordpress widget styles
May 3, 2012 at 7:48 pm
#102269
Member
This is because your “word wrapping” is not correct. Add this to your reset:
word-wrap: break-word;
In other words, change your reset to:
html,body,div,span,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,code,em,img,small,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,ol,ul,li{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent; }body{line-height: 1;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content: '';content: none }table{border-collapse:collapse;border-spacing: 0;word-wrap: break-word;}