JaeYeopHan / tip-archive

📦 Archiving various development tips. If you watch this repository, you can get issues related to the newly registered development tip from the GitHub feed.
https://www.facebook.com/Jbee.dev/
245 stars 8 forks source link

횡스크롤 without 스크롤 #36

Open JaeYeopHan opened 5 years ago

JaeYeopHan commented 5 years ago
<ul>
  <li><a></a></li>
  <li><a></a></li>
  <li><a></a></li>
  <li><a></a></li>
  <li><a></a></li>
</ul>
ul {
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none; // IE 10+
  overflow: -moz-scrollbars-none; // Firefox

  li {
    margin-right: 8px;
    display: inline-block;
    white-space: normal;

    a {
      display: block;
      padding: 14px 16px 16px 16px;
    }
  }
  li:last-child {
    margin-right: 0;
  }
}

ul::-webkit-scrollbar {
  display: none; // Safari and Chrome
}