"미디어위키:Timeless.css"의 두 판 사이의 차이

누리위키, 온 누리의 백과사전
잔글
잔글
1번째 줄: 1번째 줄:
 
/* CSS placed here will affect users of the Timeless skin */
 
/* CSS placed here will affect users of the Timeless skin */
/* 모바일에서 표가 스크롤되도록 함 */
 
 
@media screen and (max-width: 600px) {
 
@media screen and (max-width: 600px) {
 +
/* 모바일에서 표가 스크롤되도록 함 */
 
.wikitable{
 
.wikitable{
 
display:block;
 
display:block;
 
overflow-x:auto;
 
overflow-x:auto;
 
}
 
}
 +
/* 모바일에서 글자가 줄바꿈되도록 함. */
 
   .comment{
 
   .comment{
 
   word-break:break-all;
 
   word-break:break-all;
 
   }
 
   }
 
}
 
}

2019년 2월 23일 (토) 15:40 판

/* CSS placed here will affect users of the Timeless skin */
@media screen and (max-width: 600px) {
	/* 모바일에서 표가 스크롤되도록 함 */
	.wikitable{
		display:block;
		overflow-x:auto;
	}
	/* 모바일에서 글자가 줄바꿈되도록 함. */
   .comment{
   	word-break:break-all;
   }	
}