質問

%19左セクション幅、%80コンテンツ幅:

alt text

しかし、左セクションを200pxに修正したいと考えています。コンテンツセクションは、残りの視聴可能な領域の幅です。

CSSでこれを行うにはどうすればよいですか?

<html>
<head>
    <title>TWO-COLUMN LIQUID LAYOUT WITH FLOATING BOXES</title>
    <style type="text/css">
        body
        {
            margin: 0px;
            padding: 0px;
        }
        div
        {
            border: 1px solid black;
        }
        #header
        {
            background: #0f0;
            width: 100%;
        }
        #leftcol
        {
            background: #f00;
            float: left;
            width:19%;
            /* max-width: 200px; */ 
            height: 500px;
        }
        #content
        {
            background: #fff;
            float: left;
            width: 80%;
            height: 500px;
        }
        #footer
        {
            background: #0f0;
            clear: both;
            width: 100%;
        }
    </style>
</head>
<body>
    <div id="header">
        Header Section</div>
    <div id="leftcol">
        Left Section</div>
    <div id="content">
        Content Section</div>
    <div id="footer">
        Footer Section</div>
</body>
</html>
役に立ちましたか?

解決

ここで機能する既製のテンプレートがたくさんあります。たとえば、これらをご覧ください。

他のヒント

あなたが探しているコマンド:

Install-SPFeature
.

PowerShellを搭載した場合は、すべての新機能をインストールする必要があります。

ステップが必要:

  1. add-spsolution
  2. install-spsolution
  3. install-spfeature
  4. ENABLE-SPFEATURE - 特定のサイトの場合はCOL./WEB

    MSDNの詳細: http://technet.microsoft.com / ja-us / library / ff607825.aspx

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top