[.left]
image::<a href="http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Alpha2/lf.png[,200]">http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Alpha2/lf.png[,200]
[.left]
image::<a href="http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png[,400]">http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png[,400]
content after
```
The remaining challenge is how to clear the float below the images. One solution is to wrap the images in an open block and add a role to the open block that maps to a CSS rule that handles trailing float clearing.
For example:
```asciidoc
content before
[.clearfix]
--
[.left]
image::<a href="http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Alpha2/lf.png[,200]">http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Alpha2/lf.png[,200]
[.left]
image::<a href="http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png[,400]">http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png[,400]
--
content after
```
Another option is to insert raw HTML under the images using the following snippet:
```asciidoc
ifdef::basebackend-html[]
++++
<div style="clear: both"></div>
++++
endif::[]
```
Which can also be written as:
```asciidoc
ifdef::basebackend-html[++++]
ifdef::basebackend-html[<div style="clear: both"></div>]
ifdef::basebackend-html[++++]
```
Here's the second solution in all:
```asciidoc
content before
[.clearfix]
--
[.left]
image::<a href="http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Alpha2/lf.png[,200]">http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Alpha2/lf.png[,200]
[.left]
image::<a href="http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png[,400]">http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png[,400]
--
ifdef::basebackend-html[++++]
ifdef::basebackend-html[<div style="clear: both"></div>]
ifdef::basebackend-html[++++]
content after
```
I hope that helps!
-Dan