• in the wp-admin.css the alignleft on line 145 is missing the ; just after the float: left


    .alignleft {
    float: left
    }

    this is in the very latest wp1.5+ from july 4, 2005

Viewing 2 replies - 1 through 2 (of 2 total)
  • That’s okay
    .alignleft {
    float: left
    }
    is the same as
    .alignleft {
    float: left;
    }

    On the last statement inside brackets, you can leave off the ending;
    Do that elsewhere though and your css breaks.

    Thread Starter m4c3w4n

    (@m4c3w4n)

    didn’t know that, thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wp-admin.css missing ;’ is closed to new replies.