What css is used for .story-body p http://www.bbc.co.uk/news/uk-politics-10716938 I'm trying to use the style but I can't figure out the css because there are lots of containers overlapping and messing it up
It has multiple inherited style elements which is effecting the p of story-body. from story.css .story-body p, .story-wide p { clear:left; margin:0 0 18px; } from type.css .story-body p, .story-body p strong, .story-body p em, .media_asset .emp-decription p { color:#333333; } .story-body p, .story-body li, .story-wide li, .media-asset .emp-decription p { font-family:"Helvetica Neue",Arial,sans-serif; color:#333333; font-size:1.077em; line-height:18px; text-rendering:auto; } So, a accumulate style may look like this .story-body p{ font-family:"Helvetica Neue",Arial,sans-serif; font-size:1.077em; line-height:18px; text-rendering:auto; clear:left; margin:0 0 18px; } Code (markup):
You can leave out text-rendering if you like. I think it only matters for large fonts above 20px, and only works in Firefox 3 and Safari 5 so far.