Change the positions of some words to be in accordance with the syntax rules of the Portuguese language. Remove some duplicated text.
1.6 KiB
1.6 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d78ab367417b2b2512af0 | Use display: flex to Position Two Boxes | 0 | Use display: flex para posicionar duas caixas |
Description
display: flex;
em um elemento permite que você use outras propriedades flex para criar uma página responsiva. Instructions
display
ao #box-container
e defina seu valor como *flex*. Tests
tests:
- text: '<code>#box-container</code> deve ter a propriedade de <code>display</code> configurada para um valor de flex.'
testString: 'assert($("#box-container").css("display") == "flex", "<code>#box-container</code> should have the <code>display</code> property set to a value of flex.");'
Challenge Seed
<style>
#box-container {
height: 500px;
}
#box-1 {
background-color: dodgerblue;
width: 50%;
height: 50%;
}
#box-2 {
background-color: orangered;
width: 50%;
height: 50%;
}
</style>
<div id="box-container">
<div id="box-1"></div>
<div id="box-2"></div>
</div>
Solution
// solution required