-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[html] 第20天 请描述HTML元素的显示优先级 #66
Comments
在html中,帧元素(frameset)的优先级最高,表单元素比非表单元素的优先级要高。
有窗口元素比无窗口元素的优先级高
|
HTML 元素显示优先级简单来说就是:帧元素(frameset) 优先级最高(frameset 已经不提倡使用了)。其次表单元素 > 非表单元素,即 从有窗口和无窗口元素来分,有窗口元素 > 无窗口元素。有窗口元素如 Select 元素、Object 元素。 另外 参考文章:HTML 元素的优先级 |
z-index 不是针对的定位元素来说的吗, 这个div没有使用定位, z-index肯定不生效啊 |
一般都是叫层级,叫优先级也是第一次听说 |
HTML 元素显示优先级简单来说就是:帧元素(frameset) 优先级最高(frameset 已经不提倡使用了)。其次表单元素 > 非表单元素,即 input type="radio" 之类的表单控件 > 普通的如 a,div 等元素。 从有窗口和无窗口元素来分,有窗口元素 > 无窗口元素。有窗口元素如 Select 元素、Object 元素。 另外 z-index 属性也可以改变显示优先级,但只对同种类型的元素才有效。如果两个元素分别为 表单元素 和 非表单元素 那么 z-index 是无效的。在这个例子中可以看到,select 就是在 div 的上面,尽管 div 设置了 z-index:100; |
帧元素(frameset)的优先级最高(frameset 已经不提倡使用了) |
✂【回答】
🖊【便签】
|
HTML元素的显示优先级: |
|
第20天 请描述HTML元素的显示优先级
The text was updated successfully, but these errors were encountered: