Re: [css-d] sticky footer position in IE - bottom of window instead of page

2014-11-08 Thread Philippe Wittenbergh

> Le 8 nov. 2014 à 12:04, Debbie Campbell  a écrit :
> 
> It's showing up in the middle of the content  instead of at the very bottom 
> in IE 11.

Having seen a couple screenshots of IE10/11 it appears to me that
1. on initial page load, the footer is positioned at the bottom of the viewport 
(not the bottom of the content)
2. the footer scrolls with the page as if IE treats `min-height:100%` on the 
root element as `height: 100%`.

Does it help if you set a min-height for body (shot in the dark and hackish)?
body { min-height: calc(100% - 40px); /* where 40px is the height of the 
bottom-margin */ }

That shouldn’t do anything, but who knows what is going on in IE’s twisted mind 
today…

BTW you should do something about the focus state for links. At present the 
poor keyboard user is plain lost.
a:focus { outline: none } is plain evil without a suitable replacement.

Philippe
--
Philippe Wittenbergh
http://l-c-n.com/





__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Responsive Images

2014-11-08 Thread MiB

nov 7 2014 23:32 Crest Christopher :

> which is faster IIS or PHP ?

IIS is a server, PHP is a language that can run on servers. You're trying to 
compare apples to baskets. 

I haven’t looked at the Watermark code, but likely this is something in 
ASP.NET? If so that of course runs in IIS and possibly also on Apache with 
mod_mono http://www.mono-project.com/docs/web/mod_mono/. The latter is probably 
not something for you and IIS is likely to be the best for ASP.NET.

Nevertheless, switching servers because of one function that is also available 
in other packages NOT on ASP.NET is a tad strange. What are you going to do 
when you find some new hot code that can’t run well on IIS?

I’m not saying not to choose IIS, but build a solid base for choosing 
technology that you can stick with for years to come.

Personally I don’t care for either PHP or ASP.NET.

__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] sticky footer position in IE - bottom of window instead of page

2014-11-08 Thread Debbie Campbell
I stripped out all the sticky footer code and tried a few other methods, 
this one worked and tested down to IE8 with no problems:



http://css-tricks.com/snippets/css/sticky-footer/


The footer is now where it should be. Thank you for your input everyone.


http://www.redkitecreative.com/dev/boisson/


Also I fixed the :focus state for links, thanks for that too.

--
Debbie
__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/