1div {
2 width : 200px;
3 height : 50px;
4 position: relative;
5 z-index : 1;
6 background: #eee;
7}
8
9div:before {
10 content : "";
11 position: absolute;
12 left : 0;
13 bottom : 0;
14 height : 1px;
15 width : 50%; /* or 100px */
16 border-bottom:1px solid magenta;
17}