解決済
Plain Diary(3カラム)を使っているのですが、
左右に空いている幅を無くすまで広げたいのです。
それが何度やってもうまくいきません。
Plain Diary(3カラム)を使っているのですが、左右に空いている幅を無くすまで広げたいのです。
それが何度やってもうまくいきません。
アドレス
以下CCS
#container{
width:890px;
margin:0 auto;
text-align:center;
word-break:break-all;
}
#banner,#subbanner{
text-align:left;
margin:0 auto;
border-bottom:5px solid #000;
}
#banner a{text-decoration:none;}
#banner a:hover{text-decoration:underline;}
.blogtitle{
font-size:20px;
font-weight:bold;
padding:20px 10px 0;
}
.description{
font-size:14px;
padding:5px 10px 10px;
line-height:125%;
}
#blogcontainer{
width:890px;
margin:15px auto 0;
text-align:center;
}
#wrapper{
float:left;
width:690px;
}
#content{
float:right;
width:500px;
text-align:left;
}
#blog{}
#left{
float:left;
width:190px;
}
#lefttop{}
#leftbody{}
#leftbottom{}
#right{
float:right;
width:190px;
}
#righttop{}
#rightbody{}
#rightbottom{}
#footer{}
#outfooter{height:70px;}
よろしくおねがいします。
2006-12-18 16:05の質問
この質問と回答を読んで役に立った場合は「役に立つ質問」に投票してください。投票が多い質問は、役に立つ質問一覧に掲載され、より多くの人に見てもらうことができます。
Ads By Google
回答(1)
1.
2006-12-18 17:08:52

#container{
width:1015px;
margin:0 auto;
text-align:center;
word-break:break-all;
}
#banner,#subbanner{
text-align:left;
margin:0 auto;
border-bottom:5px solid #000;
}
#banner a{text-decoration:none;}
#banner a:hover{text-decoration:underline;}
.blogtitle{
font-size:20px;
font-weight:bold;
padding:20px 10px 0;
}
.description{
font-size:14px;
padding:5px 10px 10px;
line-height:125%;
}
#blogcontainer{
width:1015px;
margin:15px auto 0;
text-align:center;
}
#wrapper{
float:left;
width:785px;
}
#content{
float:right;
width:575px;
text-align:left;
}
#blog{}
#left{
float:left;
width:190px;
}
#lefttop{}
#leftbody{}
#leftbottom{}
#right{
float:right;
width:190px;
}
#righttop{}
#rightbody{}
#rightbottom{}
#footer{}
#outfooter{height:70px;}
このぐらいでどうでしょ?
width:1015px;
margin:0 auto;
text-align:center;
word-break:break-all;
}
#banner,#subbanner{
text-align:left;
margin:0 auto;
border-bottom:5px solid #000;
}
#banner a{text-decoration:none;}
#banner a:hover{text-decoration:underline;}
.blogtitle{
font-size:20px;
font-weight:bold;
padding:20px 10px 0;
}
.description{
font-size:14px;
padding:5px 10px 10px;
line-height:125%;
}
#blogcontainer{
width:1015px;
margin:15px auto 0;
text-align:center;
}
#wrapper{
float:left;
width:785px;
}
#content{
float:right;
width:575px;
text-align:left;
}
#blog{}
#left{
float:left;
width:190px;
}
#lefttop{}
#leftbody{}
#leftbottom{}
#right{
float:right;
width:190px;
}
#righttop{}
#rightbody{}
#rightbottom{}
#footer{}
#outfooter{height:70px;}
このぐらいでどうでしょ?
解決しました!
本当にありがとうございました^^
大変親切な方です!!
Ads By Google

