diff --git a/templates/repo/graph/commits.tmpl b/templates/repo/graph/commits.tmpl
index 9f7a6c1c66..8cd6adb04d 100644
--- a/templates/repo/graph/commits.tmpl
+++ b/templates/repo/graph/commits.tmpl
@@ -1,9 +1,9 @@
 <div id="rev-container">
 	<ul id="rev-list">
 		{{ range $commitI, $commit := .Graph.Commits }}
-			<li id="commit-{{$commit.Rev}}" data-flow="{{$commit.Flow}}">
+			<li {{if $commit.Rev}}id="commit-{{$commit.Rev}}"{{end}} data-flow="{{$commit.Flow}}">
 				{{ if $commit.OnlyRelation }}
-					<span />
+					<span></span>
 				{{ else }}
 					<span class="sha" id="{{$commit.ShortRev}}">
 						{{$class := "ui sha label"}}
diff --git a/web_src/less/features/gitgraph.less b/web_src/less/features/gitgraph.less
index fa37eba02c..dd01ae4bc5 100644
--- a/web_src/less/features/gitgraph.less
+++ b/web_src/less/features/gitgraph.less
@@ -1,6 +1,4 @@
 #git-graph-container {
-  float: left;
-  display: block;
   overflow-x: scroll;
   width: 100%;
   min-height: 350px;