You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2013/11/07 15:01:57 UTC

svn commit: r1539641 - /wicket/common/site/trunk/start/quickstart.md

Author: dashorst
Date: Thu Nov  7 14:01:57 2013
New Revision: 1539641

URL: http://svn.apache.org/r1539641
Log:
Correct formatting for quickstart

Modified:
    wicket/common/site/trunk/start/quickstart.md

Modified: wicket/common/site/trunk/start/quickstart.md
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/start/quickstart.md?rev=1539641&r1=1539640&r2=1539641&view=diff
==============================================================================
--- wicket/common/site/trunk/start/quickstart.md (original)
+++ wicket/common/site/trunk/start/quickstart.md Thu Nov  7 14:01:57 2013
@@ -27,18 +27,19 @@ features, please refer to the *wicket-ex
 To create your project, copy and paste the command line generated after
 typing in the groupId, artifactId and version.
 
-<style>		
+<style>	
+	#mvncmd {
+		padding-left: 25px;
+	}
 	#mvncmd label {
-		text-align: right;		
 		font-weight: bold;
 		width: 100px;
-		float: left;
-		margin: 0px 5px;		
+		display: inline-block;
 	}
-	#mvncmd input, #mvncmd select, #mvncm span { width: 180px; margin-bottom: 5px; float: left;}
+	#mvncmd input, #mvncmd select, #mvncm span { width: 180px; margin-bottom: 5px;}
 	#mvncmd textarea { width: 400px; height: 100px; }
 	#mvncmd br { clear: left; }	
-	#mvncmd div { float: left; }
+	#mvncmd div { clear:both; padding-left: 25px; vertical-align:top;}
 </style>
 <script type="text/javascript">
 	function changeIt()
@@ -64,8 +65,12 @@ typing in the groupId, artifactId and ve
 	<div>
 		<label for="groupId" title="Base Package">GroupId:</label>
 		<input type="text" id="groupId" value="com.mycompany" onkeyup="changeIt();" /><span title="Base Package">&nbsp;(?)</span><br/>
+	</div>
+	<div>
 		<label for="artifactId" title="Project Name">ArtifactId:</label> 
 		<input type="text" id="artifactId" value="myproject" onkeyup="changeIt();" /><span title="Project Name">&nbsp;(?)</span><br/>
+	</div>
+	<div>
 		<label for="version" title="Wicket Version">Version:</label>
 		<select id="version" onchange="changeIt();">
 {% for version in site.wicket.versions reversed %}