html 네임스페이스의 이름을 지정하여 사용자 정의 태그를 정의합니다. 일부 기본 태그 p div 등은 html의 기본 네임스페이스 아래에 있습니다. 사용자 정의 태그는 사용자 정의 네임스페이스 아래에 배치할 수 있으며 xmlns: 네임스페이스 이름을 통해 지정할 수 있습니다. 사용자 정의 태그에는 네임스페이스 이름이 있어야 하며 스타일을 설정할 때 "네임스페이스 이름: 태그 이름"을 사용해야 합니다.
<!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd> <html xmlns:ownhtml> <head> <meta charset="UTF-8"> <title>Document</title> <style> ownhtml\:customdiv{ font-size: .36rem; font-weight: bold; color:red; } p{ color: green; } </style> </head> <body> <!-- 通过指定html命名空间的名字来定义自定义标签;默认的一些标签p div等都在html默认的命名空间下。而自定义的标签可以放在自定义的命名空间下,可通过xmlns:命名空间名 来指定,而自定义标签需要带命名空间名,而在设置样式的时候使用 " 命名空间名\:标签名 " --> <ownhtml:customdiv class="custom">this is a custom element!</ownhtml:customdiv> <p>this is normal text</p> </body> </html>