고치기 - CSS
문제
풀이
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Styling links</title>
<style type="text/css">
a {
cursor : help; // 커서에 올렸을 때 보이는 모양 지정.
text-transform : uppercase; // 대문자 변환
text-decoration: none; //자동적으로 a 태그 붙는 밑줄 데코를 없애준다.
}
::after, ::before 은 선택한 요소의 끝자식으로 의사 요소를 하나 생성한다.
주로 장식용 콘텐츠를 추가할 때 사용!
a::after {
content: '<';
}
a::before{
content: '>';
}
</style>
</head>
<body>
<a href="http://www.testdome.com">Check documentation</a>
</body>
</html>
Author And Source
이 문제에 관하여(고치기 - CSS), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@j_user0719/CSS-고치기-CSS저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)