UX를 편리하게 하기 위한 7 CSS 팁
http://mimul.com/pebble/default/2009/10/26/1256566020000.html 7 Quick CSS Enhancements for Better User Experience 1. Change Text Highlight Color - Firefox, Opera, and Safari에서만 됨 ::selection { background:#c3effd; color:#000; /* Safari and Opera */ } ::-moz-selection { background:#c3effd; color:#000; /* Firefox */ } 2. Prevent Firefox Scrollbar Jump - Firefox용 html { overflow-y:scroll; } 3. Round..