목록WEB/HTML&CSS (13)
Knowledge Map
td 내부에 글자, 버튼을 각각 넣고글자를 가운데, 버튼을 오른쪽 끝에 놔두고 싶다면td이 position을 relative로, text_alian을 center로 둔다. 그리고 버튼의 스타일을 position absolute로 두고right : 0top : 0으로 두게 되면 오른쪽으로 이동되어있는 것을 볼수 있고글자는 가운데 있는것도 볼수 있다. 이렇게 되는 이유는absolute의 경우에는 상속되는 상위의 relative 포지션을 기준점으로 잡기 때문이라 한다.
http://techniblogic.com/how-to-disable-anchor-tag-href-links-by-html-css-javascript/# 1. Disable Anchor Tag using Simple HTMLIn this Method,we used a simple HTML attribute in a anchor tag to Disabled the click i.e. disabled=’disabled’ This adds a instruction to the anchor tag to prevent the clicking of the link e.g. Click Here 12345678Disable Anchor Tag by Simple HTMLClick HereIt not supported b..
출처: http://stackoverflow.com/questions/11709433/floating-div-not-displaying-background-color-when-i-am-not-using-overflow div가 중첩되고 float를 하면 백그라운드가 안 먹힐 때가 있다.그럴때는 아래처럼 clear both를 해주면 잘 된다 ^^ 말줄임 CSS (한줄짜리임) 123456div{ width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}cs