Maven: Fixing table bug for site plugin 2.1
- July 15th, 2010
- Write comment
Some time ago a new big release for the site plugin has been done.
Unfortunately they have introduced a small bug:
The table tags now contain the alignment attribute set to “left”.
This results to some strange bugs. Take a look at that page:
http://fest.easytesting.org/javafx/maven/compile-mojo.html
Look at the background of the table. The following h3 gets resized and its background is drawn behind the table…
To fix it, just add those lines to the CSS:
1 2 3 | table { float: none; } |
