css label in border

Solutions on MaxInterview for css label in border by the best coders in the world

showing results for - "css label in border"
Cyrus
30 May 2016
1 .borderLabel{
2                padding:10px;
3                border:2px solid;
4                margin:10px;
5            }
6            .borderLabel>label{
7                padding-left: 5px;
8                padding-right: 5px;
9                position:relative;
10                top:-20px;
11                left:20px;
12                background-color:white;
13            }
14
15<div class="handtekening borderLabel">
16<label>ON: Dhr. R. van Noort name</label>
17<img src="rene_diamant_handtekening.jpg" width="200" >
18</div>
19