Created
July 15, 2009 06:15
-
-
Save thrashr888/147512 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pre { | |
| font-size: 12px; | |
| padding: 0; | |
| margin: 0; | |
| background: #f0f0f0; | |
| border-left: 1px solid #ccc; | |
| border-bottom: 1px solid #ccc; | |
| line-height: 20px; /*--Height of each line of code--*/ | |
| background: url(pre_code_bg.gif) repeat-y left top; /*--Background of lined paper--*/ | |
| width: 600px; | |
| overflow: auto; /*--If the Code exceeds the width, a scrolling is available--*/ | |
| overflow-Y: hidden; /*--Hides vertical scroll created by IE--*/ | |
| } | |
| pre code { | |
| margin: 0 0 0 40px; /*--Left Margin--*/ | |
| padding: 18px 0; | |
| display: block; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment