본문 바로가기
반응형

Programming Language/HTML&CSS10

[HTML/CSS] 메타(Meta) 태그란? meta tag란? 태그는 html문서가 어떤 내용을 담고 있고, 문서의 키워드는 무엇이며, 누가 만들었는지 등의 문서 자체의 특성을 담고 있습니다. 태그는 문서의 헤더부분(사이)에 위치하여야 합니다. 태그에서 가장 일반적으로 사용되는 속성은 name, content 속성입니다. meta 태그 name, content 속성값 subject, title, author, keywords 등이 있습니다. 검색엔진에게 문서의 내용을 요약해 주는 역할을 담당한다고 할 수 있습니다. 그럼 name속성값으로 keywords를 지정하고, content에 "메타태그, html, 홈페이지 제작" 이라고 지정했으니 검색엔진에서 홈페이지 제작이라고 입력하면 이 페이지가 상단에 나올까요? 검색엔진이 태그를 수집하여 참고는 합니.. 2017. 12. 22.
(스크랩)html5 table 태그에서 summary 속성 사용 시 w3c validator 오류 발생 html5 table 태그에서 summary 속성 사용 시 w3c validator 오류 발생 웹표준,접근성 html5 table summary 사용 시 w3c validator 오류 관련 html5 에서 table 태그에 summary 속성을 사용할 경우 w3c validator로 검사할 때 아래와 같은 오류가 발생한다. line 168 column 106 - 오류: The “summary” attribute on the “table” element is obsolete. Consider describing the structure of the “table” in a “caption” element or in a “figure” element containing the “table”; or, simpl.. 2017. 12. 12.
[HTML/CSS] <textArea> placeholder 안보이는 이유 https://stackoverflow.com/questions/10585759/why-isnt-my-textareas-placeholder-showing-up Why isn't my textarea's placeholder showing up? I am using placeholders for all my form elements and it's showing up in them all apart from the textarea. Just looked at it in safari now, and have realised that my input of type="number" isn't sh... stackoverflow.com textArea 를 열고 닫는 태그 는 html안에서 한 줄로 작성해야 합니.. 2017. 11. 1.
[HTML/CSS] div를 넘어가는 글씨 안 보이도록 처리하려면? { overflow: hidden; text-overflow: ellipsis; } 위는 예시 중 하나입니다. 아래에 첨부한 링크를 보시면 div 안 content control 능력은 웬만큼 갖출 수 있습니다. text-overflow에 관한 mdn_web_docs https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow text-overflow - CSS: Cascading Style Sheets | MDN The text-overflow CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('…'), or .. 2017. 10. 28.
[HTML/CSS] display와 visibility 차이점 기초 { display : none; } { visibility : hidden; } 이 둘의 차이점 : display : none을 하게 되면 공간 영역 자체가 사라집니다. visibility : hidden을 하게 되면 영역 내 내용물만 보이지 않을 뿐, 영역 사이즈 width, height는 그대로 남습니다. 2017. 7. 26.
반응형