CSS: Borders
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 color
Pixel 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
Border examples
<style>
.border-dotted {
border: 1px dotted #000;
}
</style>
<div class="border-dotted">
Block with a dotted black border
</div>
Instructions
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
The exercise doesn't pass checking. What to do? 😶
If you've reached a deadlock it's time to ask your question in the «Discussions». How ask a question correctly:
- Be sure to attach the test output, without it it's almost impossible to figure out what went wrong, even if you show your code. It's complicated for developers to execute code in their heads, but having a mistake before their eyes most probably will be helpful.
In my environment the code works, but not here 🤨
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.
My code is different from the teacher's one 🤔
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.
I've read the lessons but nothing is clear 🙄
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.
Tips
Try different border styles in the editor