# Vertical alignement of lists in FF

**URL:** https://forum.kirupa.com/t/vertical-alignement-of-lists-in-ff/217263
**Category:** web dev
**Created:** [February 24, 2007, 10:33pm UTC](https://forum.kirupa.com/t/vertical-alignement-of-lists-in-ff/217263 "2007-02-24T22:33:39Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jcwilde1](https://avatars.discourse-cdn.com/v4/letter/j/46a35a/32.png) [@jcwilde1](https://forum.kirupa.com/u/jcwilde1)
#### Post date: [February 24, 2007, 10:33pm UTC](https://forum.kirupa.com/t/vertical-alignement-of-lists-in-ff/217263/1 "2007-02-24T22:33:39Z")

</div>

In FF the vertical alignment of my numbers in an ordered list are at the bottom. In IE6 it looks fine and the vertical-align: middle; works just fine. Any ideas on how to adjust this property in FF. I have a table inside my \<li\> and I am sure it is related to that but I need to keep them there.

My CSS:

```auto

 ol.movie_list li{
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
    vertical-align:middle;
    display:list-item;
    list-style-position:outside;
    font-weight:bold;
  }

  li.blue_border {
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
    background-color:#FFFFFF;
    border:1px solid #F2F2F2;
    cursor: move;
    height:20px;
  }

```
