Horizontal li resizble

Horizontal li resizble

Hi all,
just wonding if im missing something here , i have a list with items i want to resize,  if the list is vertical everything works fine, but when i add in the display:inline; to the li the drag markers appear but nothing happens and i cant make the items resize, all the cursers change its just not playing the game.
Any help appreciated



  1. .dayStrip {
    padding:0;
    margin:0;
    color:#fff;
    font-family: arial, helvetica, sans-serif;
    list-style-type:none;
    width:700px;
    background:red;
    }
    .dayStrip li {
    display:inline;
    border-style:solid;
    border-width:1px;
    }
    </style>

    <ul class="dayStrip">
    <li>Some Item</li>
    <li>Some Item2</li>
    <li>Some Item3</li>
    </ul>