什么决定了 div class 未定义时的宽度?

What determines the width of a div class when it's not defined?

我正在尝试调整此 example 中侧边栏的大小。

目前为 25%(第 3u 列)。我想在不缩小实际主要区域(第 .9u 列)的情况下将其扩大到相当于 26%。我看到完成的唯一方法是增加容器的宽度 div (class .row)。但是我没有看到 Chrome 的 "Inspect Element" 视图中定义的那个 class 的宽度!我也没有看到 .row 的边距或填充,这会将其内容推向中间并间接设置其宽度。

我是不是看错地方了,或者 Chrome 不是为此目的检查 CSS 的最佳工具?

在 chrome 开发工具中可以清楚地看到宽度应用于 .container class。

.container {
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
}