要点 - 如何设置嵌入式Gist的高度和宽度

law*_*ist 20 gist

为了在Wordpress博客中嵌入来自Github的非常长的Gists,允许我设置高度以便生成垂直滚动条的代码是什么?大约500px的东西是完美的.


编辑:问题现在已经解决,但我在这个问题上花了很多时间,我相信有一个专门讨论这个问题的线程会很有帮助.我在下面发布了一个有效的答案.

law*_*ist 23

<style type="text/css">
  .gist {width:500px !important;}
  .gist-file
  .gist-data {max-height: 500px;max-width: 500px;}
</style>

<script src="https://gist.github.com/user-name/123456789.js"></script>
Run Code Online (Sandbox Code Playgroud)

示例:Boilerplate网页借鉴自:http://www.dummies.com/how-to/content/a-sample-web-page-in-html.html [答案的效果与2016年2月24日公布的Firefox一样OSX Snow Leopard 10.6.8上的44.0.2.

<html>
<!-- Text between angle brackets is an HTML tag and is not displayed.
Most tags, such as the HTML and /HTML tags that surround the contents of
a page, come in pairs; some tags, like HR, for a horizontal rule, stand 
alone. Comments, such as the text you're reading, are not displayed when
the Web page is shown. The information between the HEAD and /HEAD tags is 
not displayed. The information between the BODY and /BODY tags is displayed.-->
<head>
<title>Enter a title, displayed at the top of the window.</title>
</head>
<!-- The information between the BODY and /BODY tags is displayed.-->
<style type="text/css">
  .gist {width:300px !important;}
  .gist-file
  .gist-data {max-height: 300px;max-width: 300px;}
</style>
<body>
<h1>Enter the main heading, usually the same as the title.</h1>
<p>Be <b>bold</b> in stating your key points. Put them in a list: </p>
<ul>
<li>The first item in your list</li>
<li>The second item; <i>italicize</i> key words</li>
</ul>
<p>Improve your image by including an image. </p>
<p><img src="http://www.mygifs.com/CoverImage.gif" alt="A Great HTML Resource"></p>
<p>Add a link to your favorite <a href="http://www.dummies.com/">Web site</a>.
Break up your page with a horizontal rule or two. </p>
<hr>
<p>Finally, link to <a href="page2.html">another page</a> in your own Web site.</p>
<!-- And add a copyright notice.-->
<p>&#169; Wiley Publishing, 2011</p>
<script src="https://gist.github.com/lawlist/12345678.js"></script>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)


Has*_*eem 10

上述答案都不再适用.这是更新的CSS,可以根据需要正确显示要点和可见滚动条.

.gist {
   max-width:350px;
   overflow:auto;
}

.gist .blob-wrapper.data {
   max-height:200px;
   overflow:auto;
}
Run Code Online (Sandbox Code Playgroud)

请参阅此博客文章,例如: 如何设置嵌入式Github Gist的自定义高度和宽度.