Skip to content

Instantly share code, notes, and snippets.

@titox
Created January 23, 2012 15:20
Show Gist options
  • Select an option

  • Save titox/1663686 to your computer and use it in GitHub Desktop.

Select an option

Save titox/1663686 to your computer and use it in GitHub Desktop.
list with 1px solid left gradient border
/**
* list with 1px solid left gradient border
*/
.item {
font-family: Helvetica, 'sans-serif';
background-repeat: repeat-y;
background-image: linear-gradient(45deg,#CCCCCC 50%,transparent 50%);
background-size: 2px;
color: #CCCCCC;
}
ul {
padding: 0 20px;
list-style-type: none;
}
<!-- content to be placed inside <body>…</body> -->
<div class="item">
<ul>
<li>El primer item</li>
<li>El segundo item</li>
<li>El tercer item</li>
<li>El cuarto item</li>
</ul>
<div>
{"view":"split","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment