html - CSS renders differently when served through IIS -


the file on http://tinyurl.com/qjrrsru zipped folder 1 plain html page, 2 css files , 3 image files. these produce panel rounded corners. problem panel works if opened directly in browser or using asp.net webserver. when upload iis looks differently in browser. can appears same when served through iis. know many people have asked question before no solution has worked me. hence thought should share files.

your image files don't have file extensions, iis won't serve them without.

btw code uses table , img elements achieve handled quite modern( , not modern browsers) now.

i've recreated( not quite close) here

http://jsfiddle.net/adrianjmartin/mbzrb/

using couple of divs , smal amount of css

<div>   <h1>header</h1>   <div>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/>&nbsp;<br/></div> </div>  <style>  div{  font-family:tahoma;  border-radius:8px;  border: #aecaf0 solid 1px;  width:300px }  div h1{   margin:0;   font-size:12px;   background-color:#e0edff ;   padding:8px;   font-weight:normal;   border-top-left-radius:6px;   border-top-right-radius:6px;   border-bottom: solid 1px #aecaf0; }  div div{   border:initial } </style> 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -