1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| /* class ARTICLE */
.article{
margin: 10px 10px 10px 10px;
padding: 0px;
border: 1px solid;
position: relative;
width: 618px; text-align: justify;
}
.article div, .article p {
margin: 10px 0px 10px 5px;
}
.article h2, .article .date {
font-size: 100%;
padding: 2px 0 2px 10px;
margin: 0;
font-weight: normal;
}
.article div.image-container{
margin: 10px 5px 5px 5px;
}
.article div.left{
float: left;
margin-left: 5px;
}
.article div.right{
float: right;
margin-right: 5px;
}
.article div.center{
margin-right: auto;
margin-left: auto;
text-align: center;
} |
Partager