只是想知道创建一个中心列设计是否比这个snippet
更容易CSS:
Observable.from(list)
.flatMap(jsonObject -> buildObservable((String) jsonObject.get("url")),
(jsonObject, result) -> combine(jsonObject, result)
)
.subscribe(async::resume, async::resume);
HTML:
body {
background-color: #f9f9f9;
}
.centerCol {
background-color: #FFFFFF;
box-shadow:0 0 9px rgba(0,0,0,.44);
padding: 15px;
width: 65%;
height: auto;
float: none;
margin: 10px auto 20px;
margin-top: 60px;
}
我觉得它已经非常简单了,但我想我会问