전단 상용 css 양식·구덩이 밟는 길

590 단어 css프런트엔드
1. 한 줄의 줄임말과 여러 줄의 줄임말
줄임표
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

여러 줄의 줄임표
  • 주의: webpack 포장한 후 분실-webkit-box-orient: vertical
  • 더하기autoprefixer 이 기한이 지난 스타일 규칙을 무시하고 삭제하려면 블록 레벨과 단행 두 가지 문법이 있고 둘 중 하나를 선택하여 사용하면 된다
  • overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    
    //  
    /*! autoprefixer: off */
    -webkit-box-orient: vertical
    /*! autoprefixer: on */
    
    //  
    /*! autoprefixer: ignore next */
    -webkit-box-orient: vertical
    

    좋은 웹페이지 즐겨찾기