<html> | |
<head> | |
<title>Long horizontal gradient with left border.</title> | |
<style> | |
div { | |
padding: 0px; | |
margin: 0px; | |
} | |
#leftdiv { | |
border-left: 1px solid black; | |
width: 0px; | |
height: 100px; | |
float: left; | |
} | |
#rightdiv { | |
width: 33000px; | |
height: 100px; | |
background-color: green; | |
} | |
</style> | |
</head> | |
<body> | |
<div><div id='leftdiv'></div><div id='rightdiv'></div></div> | |
</body> | |
</html> |