<br> 태그를 모바일에서는 적용이 안되게 할 수 있나요?
본문
<br> 태그를 모바일에서는 적용이 안되게 할 수 있나요?
감사합니다.
답변 6
@media only screen and (max-width: 767px) {
br{ display:none !important; }
}
css 미디어쿼리로 모바일사이즈지정하고
br 에 클래스주던지해서 display none 하면 ?
php 특정 태그 제거라는 키워드로 구글에 한번 검색해보세요.
자료가 많이 나오실겁니다.
https://stackoverflow.com/questions/17588953/how-to-disable-br-tags-inside-div-by-css/17589039
참고하세요.
<body> 밑에 아래의 자바스크립트를 추가하세요.
<script>
if (("win16win32win64macmacintel").indexOf(navigator.platform.toLowerCase()) < 0) {
noBr = document.getElementsByTagName("br");
for (i in noBr) noBr[i].style.display = "none";
}
</script>
모든 개발자님,
답변 감사합니다.
전부 채택하고 싶네요.
답변을 작성하시기 전에 로그인 해주세요.