There is my fiddle
.content {
width: 1140px;
margin: 0 auto;
text-align: center;
}
.content .content_row {
display: table;
}
I want justify my two rows to 1140px. Can I do this without table-tag?
UPD. I want this result
try the following
.content {
min-width: 1140px; // Change to min-width
margin: 0 auto;
text-align: center;
}
.content .content_row {
display: table;
}
Try like this: Demo
.content {
margin: 0 auto;
text-align: center; // Removed width from .content
}
.content > .content_row {
display: table;
width: 1140px; // Added width here
}