Answers for "create border"

CSS
2

make border to div

border: 2px solid black
Posted by: Guest on November-30-2020
5

how to add border in css

.div1{
	border: 10px;
    border-color: #000000;
    border-style: solid;
}
Posted by: Guest on January-04-2021
1

add border to input css

border: none;
border-bottom: 1px solid blue;
Posted by: Guest on March-11-2020

Browse Popular Code Answers by Language