Add Borders Around your Elements - not passing
See original GitHub issueAdd Borders Around Your Elements
Issue Description
Code is not passing, even though it’s correct
Browser Information
- Browser Name, Version: Vivaldi
- Operating System: Windows
- Desktop
Your Code
<style>
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
.smaller-image {
width: 100px;
}
.thick-green-border{
border-color: green;
border-width: 10px;
border-style: solid;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. ">
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Add Borders Around Your Elements - Guide
To add a custom border around any HTML element, these three properties are used as shown below. ... The same className should be...
Read more >CSS: Adding Borders to Elements - iLoveCoding
Adding Borders to Elements. In this lesson, we are going to learn, how to add borders to elements, so let's get started. In...
Read more >The 3 CSS Methods for Adding Element Borders
The most essential syntax for a border defines it's width and style: border: 3px solid; If not defined, the default color will be...
Read more >Placing border inside of div and not on its edge - Stack Overflow
So for the 'inner' border of 10px you would write the following: ... This way, the border width is not added to the...
Read more >How to Remove and Style the Border Around Text Input Boxes ...
Add CSS · Set the border-top-style, border-right-style, border-left-style properties of the <input> element to "hidden". · Use the :focus pseudo-class with the " ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@diomed, try reset it and write it again. I found a problem. there has an issue with
in the code editor. that cause your code won’t get passed. test realize it as not pass. sorry about that.Please apply the fix.