Listing A
<!doctype html public "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<style type="text/css">
#box {
    width: 350px;
    border-color: red;
    border-style: dashed;
}
</style>
</head>
<body>

This is text outside the box. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. 

<div id="box">
This is text inside the box. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. 
</div>
</body>
</html>


++++++++++++++++

Listing B
#box {
    width: 350px;
    border-color: red;
    border-style: dashed;
    padding: 10px;
}


++++++++++++++

Listing C
#box {
    width: 350px;
    border-color: red;
    border-style: dashed;
    padding: 10px;
    border-width: 15px;
}


+++++++++++++++++++++

Listing D
#box {
    width: 350px;
    border-color: red;
    border-style: dashed;
    padding: 10px;
    border-width: 15px;
    margin-top: 40px;
}


++++++++++++++

Listing E
#box {
    width: 350px;
    border-color: red;
    border-style: dashed;
    padding: 10px;
    border-width: 15px;
    margin: 40px;
}


++++++++++++++++

