0

現在、レイアウトに境界線と境界半径を追加する際に問題が発生しています。いろいろと試してみたのですが、うまくいきません。私を助けてください。以下に HTML と CSS のソース コードを示します。

HTML:

<div class="colmask fullpage">
    <div class="col1">
        <!-- Column 1 start -->

        ...content goes here...

        <!-- Column 1 end -->
    </div>
</div>

CSS:

/* column container */
.colmask {
  position: relative;   /* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
  clear: both;
  float: left;
  width: 100%;          /* width of whole page */
  overflow: hidden;     /* This chops off any overhanging divs */

}
/* 1 column full page settings */
.fullpage {
  background: #fff;
}
.fullpage .col1 {
  margin: 0 1em;
}
4

1 に答える 1

0

border: 1px; を使用する代わりに、これがあなたのその後であることを願っています。box-shadow: 0 0 2px 0 #000000; を試してください。jsfiddle.net/XYwc4/1

于 2013-01-23T05:26:54.563 に答える