Why i am getting test case failed error for my 70,71 th qs on css
Dear user,
kindly share with question and your code.
Thanks.
Place an dashed blue border around the given paragraph ‘I have a blue border’ of width 5px
p{
border: 5px dashed blue;
}
Place a solid border of width 10px around the given paragraph ‘Pen is better than Sword’
.sid{
border:10px solid;
}
p {
border: 5px dashed blue;
padding: 10px;
width: fit-content;
}
/* Solid border */
.sid {
border: 10px solid;
padding: 10px;
width: fit-content;
margin-top: 20px;
}