Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make Gist embed scrollable

is it possible to make gist embed script have vertical scroll bar? I want to embed my gist to my blog post, but it's a long code. I want my gist look like this in my blog post :

Scrollable code container

like image 772
Lyan Dwi Pangestu Avatar asked Feb 02 '26 04:02

Lyan Dwi Pangestu


1 Answers

The easiest solution is to add the following code to your CSS:

.gist-data{
    height:250px; // Any height
    overflow-y: visible;
}

This will limit the height of the gist's container, I tried other wrappers around it and this was the first one to limit the height.

Depending on specificity, you may need to add !important in your styles.

like image 124
Greg McMullen Avatar answered Feb 04 '26 21:02

Greg McMullen