I have encountered an issue in Chrome where I created a hexagon group using HTML
and CSS
. While it displays fine in Firefox, the edges of the hexagons appear distorted in Chrome. Here are my code snippets:
HTML
<div class="col-sm-12 margin-left-100" id="sortable">
<div id="c_1" class="hexagon hexagon2 sort">
<div class="hexagon-in1">
<div class="hexagon-in2">
<div class="inner inner-left text-center"><i class="fa fa-eye"></i></div><div class="inner inner-right text-center"><i class="fa fa-link"></i></div>
</div>
</div>
</div>
...
CSS
.hexagon {
overflow: hidden;
visibility: hidden;
-webkit-transform: rotate(120deg);
-moz-transform: rotate(120deg);
-ms-transform: rotate(120deg);
-o-transform: rotate(120deg);
transform: rotate(120deg);
cursor: pointer;
}
.hexagon-in1 {
...
For the full code, please see this JSFiddle link.
I would greatly appreciate any assistance in resolving this issue. Thank you in advance for your help.