Advertisement
konyakov

autosuggest.css | AJAX+PHP+MySQL Autosuggest (Cyr & Utf-8)

Dec 26th, 2011
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.42 KB | None | 0 0
  1. div.suggestions {
  2.     -moz-box-sizing: border-box;
  3.     box-sizing: border-box;
  4.     background-color: white;
  5.     border: 1px solid black;
  6.     position: absolute;  
  7. }
  8.  
  9. div.suggestions div {
  10.     cursor: default;
  11.     padding: 0px 3px;
  12.     height:30px;
  13.     font-size:25px;
  14. }
  15.  
  16. div.suggestions div.current {
  17.     background-color: #3366cc;
  18.     color: white;
  19. }
  20.  
  21. input{
  22.     height:30px;
  23.     width:500px;
  24.     font-size:25px;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement