Insert space at position in border line

css, javascript, jquery

Solution

Another solution using `border-width`:

.line {
    width: 20px;
    height: 1px;
    padding: 0;
    border-width: 0 100px 0 150px;
    border-style: solid;
    border-color: red;
}

http://jsfiddle.net/dfsq/Uttxy/1/

Problem

I'm displaying a horizontal line using css : ``` .horizontalLineBottom { border-bottom:solid #6E6A6B; border-width:1px; } ``` Can I space be insterted a specific position on this line ? So ``` ______________________________________________ ``` becomes ``` ______________________________ ___ ```

Original source