개발은 하는건가..

[CSS] 반응형 말줄임 처리 본문

Web (js, css, html)

[CSS] 반응형 말줄임 처리

수동애비 2023. 9. 14. 16:06
반응형
<style>
div {
  display: flex;
  overflow: hidden;
}

div > p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
</style>

<html>
<div>
  <p>
  긴 문장의 메세지~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  </p>
</div>
</html>

 

table  안에서 동작 시  테이블의  style 에   table-layout: fixed ;  가 설정되어 있어야 한다.

Comments