Click here to Skip to main content
15,917,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is it correct?
Thank you for your kind support

CSS
.text {
 font-family: 'tahoma';
 font-size: 12px;
 line-height: 15px;
 font-weight: 500;
 display: block;
 border-style: solid;
 border-top-width: 0px;
 border-left-width: 10px;
 border-right-width: 0px;
 border-bottom-width: 5px;
 border-color: #000;
 margin-left: 10px;
 margin-top: 0;
 margin-right: 10px;
 margin-bottom: 0;
}


What I have tried:

CSS
.text { 
font: 500 12px/15px tahoma;
display: block;
border: solid black;
border-width: 0px 0px 5px 10px; 
margin: 0px 10px 0px 10px; 
}
Posted
Updated 17-Mar-17 0:37am

1 solution

It is indicated as correct when pasted at CSS Validation Service[^].

But only you will know if elements using that style look like you want.
 
Share this answer
 
Comments
Member 13064822 17-Mar-17 7:28am    
Thank you :D

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900