如何更改动态嵌入的要点的高度?

时间:2016-07-03 03:05:25

标签: css github gist

如何更改动态嵌入的要点的高度?

我已经尝试了很多使用css的不同方法,我似乎无法弄清楚如何将要点的高度更改为滚动条的位置。

Gist call

$.getJSON("https://gist.github.com/username/my_gist.json?callback=?", function(result){
    $('div.container').append('<div class="row slide sub-slide-1"><div class="col-xs-offset-1 col-xs-8">' + result.div + '</div></div>');
    $('head').append('<link rel="stylesheet" href="' + result.stylesheet + '"/>');
});

1 个答案:

答案 0 :(得分:1)

编辑:做到这一点并且工作正常。您也可以在.gist上应用它,使用相同的

.container{
 height: 150px;
 overflow-y: scroll; 
}

View Demo