mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-26 22:01:30 -04:00
1.7 KiB
1.7 KiB
id, title, challengeType, forumTopicId, localeTitle
| id | title | challengeType | forumTopicId | localeTitle |
|---|---|---|---|---|
| 587d7fa7367417b2b2512bc6 | Add Inline Styling to Elements | 6 | 301475 | 给元素添加内联样式 |
Description
style() 方法为动态元素添加内联 CSS 样式表。
style() 方法以用逗号分隔的键值对作为参数。这里是一个将选中文本的颜色设为蓝色的例子:
selection.style("color","blue");
Instructions
style() 方法,使所有显示的文本的 font-family 为 verdana。
Tests
tests:
- text: 你的 <code>h2</code> 元素的 <code>font-family</code> 应该为 verdana。
testString: assert($('h2').css('font-family') == 'verdana');
- text: 你应该使用 <code>style()</code> 方法。
testString: assert(code.match(/\.style/g));
Challenge Seed
<body>
<script>
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
d3.select("body").selectAll("h2")
.data(dataset)
.enter()
.append("h2")
.text((d) => (d + " USD"))
// 在下面添加你的代码
// 在上面添加你的代码
</script>
</body>
Solution
<body>
<script>
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
d3.select("body").selectAll("h2")
.data(dataset)
.enter()
.append("h2")
.text((d) => (d + " USD"))
.style("font-family", "verdana")
</script>
</body>