1.4 KiB
1.4 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d781c367417b2b2512ac4 | Set the font-size of Paragraph Text | 0 | قم بتعيين حجم خط نص الفقرة |
Description
font-size
في CSS على العناوين ، بل يمكن تطبيقها على أي عنصر يحتوي على نص. Instructions
font-size
للفقرة إلى 16 بكسل لجعلها أكثر وضوحًا. Tests
tests:
- text: يجب أن يكون <code>font-size</code> علامة <code>p</code> الخاصة بك 16 بكسل.
testString: 'assert($("p").css("font-size") == "16px", "Your <code>p</code> tag should have a <code>font-size</code> of 16 pixels.");'
Challenge Seed
<style>
p {
font-size: 10px;
}
</style>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</p>
Solution
// solution required