2.4 KiB
2.4 KiB
id, challengeType, videoUrl, forumTopicId, title
id | challengeType | videoUrl | forumTopicId | title |
---|---|---|---|---|
587d778e367417b2b2512aab | 0 | https://scrimba.com/c/cKb3nCq | 301017 | 使用高对比度文本提高可读性 |
Description
Instructions
color
从当前的浅灰色(#D3D3D3
)修改为深灰色(#636363
),以使对比度提升到 6 : 1。
Tests
tests:
- text: '你应该将<code>body</code>的<code>color</code>修改为深灰色。'
testString: assert($('body').css('color') == 'rgb(99, 99, 99)');
- text: '你不应该修改<code>body</code>的<code>background-color</code>。'
testString: assert($('body').css('background-color') == 'rgb(255, 255, 255)');
Challenge Seed
<head>
<style>
body {
color: #D3D3D3;
background-color: #FFF;
}
</style>
</head>
<body>
<header>
<h1>Deep Thoughts with Master Camper Cat</h1>
</header>
<article>
<h2>A Word on the Recent Catnip Doping Scandal</h2>
<p>The influence that catnip has on feline behavior is well-documented, and its use as an herbal supplement in competitive ninja circles remains controversial. Once again, the debate to ban the substance is brought to the public's attention after the high-profile win of Kittytron, a long-time proponent and user of the green stuff, at the Claw of Fury tournament.</p>
<p>As I've stated in the past, I firmly believe a true ninja's skills must come from within, with no external influences. My own catnip use shall continue as purely recreational.</p>
</article>
</body>
Solution
// solution required