Fix strange carousel width on http://gohugo.io/

The solution is to add `table-layout:fixed` when `display:table` is used
as per the answer given at:

    http://stackoverflow.com/questions/21230184/owl-carousel-inside-a-table-cell-parent-makes-parent-to-expand-weird

Fixes #1465
This commit is contained in:
Anthony Fok
2015-10-02 03:27:38 -06:00
parent 218554e363
commit 08d41c3a48
2 changed files with 4 additions and 3 deletions

View File

@@ -167,6 +167,7 @@ a:hover {
.callout {
color: #ffffff;
display: table;
table-layout: fixed;
height: 420px;
width: 100%;
background-color: rgb(118,156,172);