我正在尝试添加一个div到我的html中,里面有一个盒子图像。但是我不能让图像伸展到div的大小
这是我到目前为止所知道的,
<div style="background:url('images/box.png') no-repeat center center fixed;width:600px;height:400px">
test
</div>
这将显示一个宽度为600px、高度为400px的div,但它会显示图像的一半。但我需要让图像伸展。
谢谢
我正在尝试有一个背景图像覆盖页面的垂直长度。当我添加背景时-重复:重复-y;图像拉伸。当我有背景时-重复:不-重复;它不会伸展。这是怎么回事?我不想让它伸展,我只想重复它直到页面的底部。
下面是CSS:
.backgroundTest{
background-color:white;
background-image:url(../images/sideBanner.jpg);
position:absolute;
background-size:175px 100%; /* I need this, otherwise the background image is to
我是android和图形开发的新手。我实现了一个自定义视图,并希望绘制到画布上。我将customview大小设置为(width x ( width /2)),因此矩形高度是宽度的一半。现在,当开始绘图时,我很容易在1X1这样的正方形区域上绘图。如下所示:
protected void onMeasure (int widthMeasureSpec, int heightMeasureSpec){
int widthSize = MeasureSpec.getSize(widthMeasureSpec);
int heightSize = MeasureSpec.getSize(