IE中的CSS Overflow-y问题

时间:2014-09-09 09:50:06

标签: css css3 internet-explorer

IE 11在我的网站上没有玩溢出-y球。

http://mdsrecipes.azurewebsites.net/

如果点击Chrome中含有韭菜和蘑菇配方的鸡肉。 食谱细节在div中很好地滚动。

但是在IE中它不起作用。

任何想法都会受到赞赏。

由于 马尔科姆

1 个答案:

答案 0 :(得分:0)

css

中需要进行更改
#reciperightcolumn{
overflow:hidden
}
#divrecipe{
 height:600px;  /*make it as 600px instead of 100% */
 overflow-y:auto;

}