关于布局的小问题

来源:13-9 Relative与Absolute组合使用

For_Me_Able

2016-08-01 11:28

如果将图片设置为浮动,在一个DIV里一张左浮动,一张右浮动。并且向设置图片距离边框有一定距离,应该怎么写呢?求助啊!!各位大神们。关于这部分的代码如下:

.contentc{position:relative;height:auto;width:100%;}

.borderleft{float:left;background:url(../images/leftyy.png) repeat-y;height:500px;width:16px;}

.borderright{float:right;background:url(../images/rightyy.png) repeat-y;height:500px;width:16px;}


   <div class="contentc">

            <div class="borderleft"></div>

             <div class="borderright"></div>

 </div>

写回答 关注

3回答

  • 刘小tia3743904
    2016-08-01 15:11:49
    已采纳

    <html>
        <style>
            .ab{width:300px;
                height:200px;
                background:#09f;
                 padding:10px;
            }
            .ab-1{width:100px;
                height:100px;
                background:#f96;
                margin:10px;
                float:left;
            }
            .ab-2{width:100px;
                height:100px;
                background:#f9f;
                margin:10px;
                float:right;
            }
        </style>
        <body>
            <div class="ab">
                <div class="ab-1"><img src="smiley.gif" style="width:100px;height:100px"/></div>
                <div class="ab-2"></div>
            </div>
        </body>
    </html>



    For_Me...

    非常感谢!

    2016-08-05 15:29:03

    共 1 条回复 >

  • 小妖怪
    2016-08-01 12:05:00

    可以用margin 设置 外边距

  • 小妖怪
    2016-08-01 12:03:56

    .borderleft{float:left;background:url(../images/leftyy.png) repeat-y;height:500px;width:16px;margin-left:10px;}

    .borderright{float:right;background:url(../images/rightyy.png) repeat-y;height:500px;width:16px;margin-right:10px;}


初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1225309 学习 · 18230 问题

查看课程

相似问题