1234567891011121314151617181920212223242526272829303132 |
- .main {
- width: 350px;
- height: 220px;
- padding: 15px 10px 20px 10px;
- margin-bottom: 30px;
- border: dotted 2px red;
- background-color: green;
- }
- .text {
- text-align: justify;
-
- }
- .left {
- height: 130;
- width: 220;
- float: left;
- margin-right: 15px;
- margin-bottom: 15px;
- }
- .right {
- padding: 0px;
- height: 100px;
- width: 200px;
- float: right;
- margin-top: 15px;
- margin-left: 15px;
- margin-bottom: 10px;
- }
|