2013-11-04 4 views
14

क्या आप नीचे उद्धृत के रूप में प्रभाव प्राप्त करने के लिए सीएसएस का सुझाव दे सकते हैं (CSS3 ढाल & सीमाओं का उपयोग करके)?फ़ील्डसेट के अंदर एचटीएमएल 5 लीजेंड के लिए CSS3

enter image description here

HTML के वर्तमान संस्करण नीचे वर्णित है:

<section style="margin: 10px;"> 
<fieldset style="border-radius: 5px; padding: 5px; min-height:150px;"> 
<legend><b> My Statistics </b> </legend> 
<label> <br/> </label> 
<label> <br/> </label> 
</fieldset> 

उत्तर

43

fieldset { 
 
    font-family: sans-serif; 
 
    border: 5px solid #1F497D; 
 
    background: #ddd; 
 
    border-radius: 5px; 
 
    padding: 15px; 
 
} 
 

 
fieldset legend { 
 
    background: #1F497D; 
 
    color: #fff; 
 
    padding: 5px 10px ; 
 
    font-size: 32px; 
 
    border-radius: 5px; 
 
    box-shadow: 0 0 0 5px #ddd; 
 
    margin-left: 20px; 
 
}
<section style="margin: 10px;"> 
 
<fieldset style="min-height:100px;"> 
 
<legend><b> My Statistics </b> </legend> 
 
<label> <br/> </label> 
 
<label> <br/> </label> 
 
</fieldset>

(http://jsfiddle.net/ESkRt/1/)

5

ये लीजिए:

<!doctype html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>Untitled Document</title> 
</head> 

<body> 
<section style="margin: 10px;"> 
<fieldset style="border-radius: 5px; padding: 5px; min-height:150px; border:8px solid #1f497d; background-color:#eeece1;"> 
<legend style=" margin-left:20px;background-color:#1f497d; padding-left:10px; padding-top:5px; padding-right:120px; padding-bottom:5px; ; color:white; border-radius:15px; border:8px solid #eeece1; font-size:40px;" ><b> My Statistics </b> </legend> 
<label> <br/> </label> 
<label> <br/> </label> 
</fieldset> 
</body> 
</html> 
संबंधित मुद्दे