我试图将我的图像与Top和Bot对齐,但它没有与底部对齐。 我的代码:
class MyClass {
private final int a;
private final String b;
private double c;
/**
* Most common constructor.
*/
public MyClass(int a, String b, double c) {
this.a = a;
this.b = b;
this.c = c;
}
public MyClass(int a, String b) {
this(a, b, 0.0);
}
public MyClass(double c) {
this(0, null, c);
}
// other constructors as needed
}
(底部:10%不起作用) 我在StackOverflow上尝试了另一个解决主题,但没有一个能够工作。
答案 0 :(得分:-1)
我通过更改样式找到了解决方案 Previus代码:
style='position:absulte;margin-top:-1px;width:80%;height:95%;bottom:10%'
新代码:
style='width:900px;height:600px'