internet explorer 9 - CSS columns not working when viewing HTML file on network share -
i have simple columns approach based on list described here: how make html grid resizes fit page width?
it works on local machine when viewing file on network share, in 1 big column. css in html file, no external scripts @ all. i'm using ie9 in both cases why different behaviour?
after looking @ example link , corresponding jsfiddle, accepted answer uses linked stylesheet resource: bootstrap-combined.min.css. accessible here: http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-combined.min.css
i'm guessing, somewhere in network, when file accessed, user/iis/whatever agent doesn't have rights access bootstrap file or wasn't included ftp publish.
every <ul> i've ever worked has <li>'s set clear:both default. setting <ul class="inline">, it's made child elements inline elements float left default, defined (apparently) in twitter bootstrap. it's voo-doo css me.
you try setting <li>'s class style float:left;. give desired result.
jsfiddle: http://jsfiddle.net/ywvwd/1/
Comments
Post a Comment