9.代码填空,选取段落元素的第一个子元素:(2.0分)
时间: 2023-12-03 19:44:32 浏览: 72
```html
<!DOCTYPE html>
<html>
<head>
<title>示例</title>
</head>
<body>
<div>
<h1>标题</h1>
<p>段落1</p>
<p>段落2</p>
</div>
<script>
let divElement = document.querySelector('div');
let firstChild = divElement._____;//填空
console.log(firstChild.textContent);
</script>
</body>
</html>
```
答案:firstChild
相关问题
9.代码填空,选取段落元素的第一个了元素:(2.0分) 1 background-color: yellow; 3
```
p:first-child {
background-color: yellow;
}
```
7.代码填空,为元素设置10像素的垂直偏移,20像素的水平偏移的红色阴影: (2.0分) red
```css
box-shadow: 20px 10px red;
```
阅读全文