Any block element in HTML can be highlighted with frames. This stylistic device allows you to separate monochrome components from each other, or highlight a key element on the page
This text is framed, so it's easy to find on the page straight away
To create a border for an element, we use the border
property, which is shorthand for several properties:
border-width
border-style
border-color
You can specify multiple properties, or you can combine everything within the border
property. This is the most common variant and looks like this:
.element {
border: 1px solid #ccc;
}
where:
1px
- border widthsolid
- border style#ccc
- border colorPixel values and hex color we've already dealt with in this course, but there are eight border styles in CSS:
dotted
dashed
solid
double
groove
ridge
inset
outset
and there is also a none
value that will "remove" the border, because with border-style: none
, browsers ignore the other properties and remove the border
<style>
.border-dotted {
border: 1px dotted #000;
}
</style>
<div class="border-dotted">
Block with a dotted black border
</div>
Add <div>
to the editor with the class set to border-bold
and set a solid border 5 pixels thick. Border color #2196F3
. Write styles in the <style>
tag
Try different border styles in the editor
If you've reached a deadlock it's time to ask your question in the «Discussions». How ask a question correctly:
Tests are designed so that they test the solution in different ways and against different data. Often the solution works with one kind of input data but doesn't work with others. Check the «Tests» tab to figure this out, you can find hints at the error output.
It's fine. 🙆 One task in programming can be solved in many different ways. If your code passed all tests, it complies with the task conditions.
In some rare cases, the solution may be adjusted to the tests, but this can be seen immediately.
It's hard to make educational materials that will suit everyone. We do our best but there is always something to improve. If you see a material that is not clear to you, describe the problem in “Discussions”. It will be great if you'll write unclear points in the question form. Usually, we need a few days for corrections.
By the way, you can participate in courses improvement. There is a link below to the lessons course code which you can edit right in your browser.
Your exercise will be checked with these tests:
1const { test } = require('tests');
2
3test(({ query, expect }) => {
4 const element = query(document, '.border-bold');
5
6 const style = getComputedStyle(element);
7 expect(style).to.have.property('border-width', '5px');
8 expect(style).to.have.property('border-style', 'solid');
9 expect(style).to.have.property('border-color', '#2196f3');
10});
11
Teacher's solution will be available in: