[CSS] 텍스트 초과시 줄바꿈 http://dolly77.tistory.com/5 style="word-break:break-all;" 요걸해주면 된당! 1. word-break:break-all 을 사용 하여 자동줄바꿈이 되게 해야 한다.2. 파폭, 오페라는 이 속성이 적용되지 않기 때문에 word-break:break-word 를 사용하여야 한다.3. table 안에 td에 적용 할러면 table-layout:fixed;를 사용한다. Web/Html 2017.12.02
input 태그의 required 속성 사용시 나오는 안내문 변경하기 참고: https://stackoverflow.com/questions/5272433/html5-form-required-attribute-set-custom-validation-message - 아래의 소스를 가져다가 잘 붙여서 쓰면 된다! up vote158down voteacceptedUse setCustomValidity:document.addEventListener("DOMContentLoaded", function() { var elements = document.getElementsByTagName("INPUT"); for (var i = 0; i Web/Html 2017.07.20
[에러노트] button onclick시 form의 onsubmit이 실행되는 현상 Welcome! Let me introduce yourself Name Password Write your story! TITLE CONTEXT Cancel [에러상황!!!!]=> cancel button을 클릭하면 form이 제출되는 현상이 발생함. 왜그럴까 하고 봤더니, onsubmit의 제일 밑에 기본이 되는 함수가 onClick 이라고 StackOverflow에 쓰여있었음!! 그래서 button 의 onclick이 같이 실행되는 현상이 발생함. 실제로 누르지도 않았는데!! 그래서 해결하기 위해 input으로 바꾸니 잘됨! 아래는 바꾼 코드! Welcome! Let me introduce yourself Name Password Write your story! TITLE CONTEXT input t.. Web/Html 2017.07.20
[HTML] form 태그 (사용자 입력 받기) 1. 실행결과 2. 소스 백업! name: pwd: title: context: 3. 참조!https://www.w3schools.com/html/html_forms.asp Web/Html 2017.07.14