* { margin:0; padding:0; } html { font-size:11px; font-family:Tahoma, FreeSans; padding:10px; } /* div container */ #container { width:500px; margin:0 auto; text-align:center; } /* list messages div */ #chat-messages { border:1px solid gray; -moz-border-radius-topleft:5px; -webkit-border-top-left-radius:5px; padding:2px; text-align:left; word-wrap:break-word; } /* send div */ #chat-send { border:1px solid gray; border-top:none; -moz-border-radius-bottomright:5px; -webkit-border-bottom-right-radius:5px; padding:2px; text-align:left; } /* the send input box */ #send-text { width:324px; font-size:inherit; font-family:inherit; border:1px solid #ececec; } #send-user { width:100px; font-size:inherit; font-family:inherit; border:1px solid #ececec; } /* the send input button */ #send-text-button { font-size:11px; /* must enter values for IE7 */ font-family:Tahoma, FreeSans; /* must enter values for IE7 */ width:60px; } #send-loading { position:relative; top:-20px; text-align:right; right:70px; color:gray; display:none; } .mess-holder { padding:2px; } .mess-holder:hover { background:#ececec; } /* set divs to inline */ .mess-holder div { display:inline; }