Rounded Corners 1px

by marakoss

HTML

<div id="wraper"><div>text</div></div>

CSS

* {
    margin: 0;
    padding: 0;
}

html, body{
    height: 100%;
    background: #444;
}

#wraper {
    width: 50%;
    background: #eee;
    padding: 1px 0;
    overflow: visible;
}

#wraper div {
    width: 100%;
    height: 100%;
    background: #fff;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    position: relative;
    left: -1px;
}