I wrote the following CSS in WordPress:
.post-source {
color: #aaa;
display: inline-block;
position: relative;
top: 2px;
float: left;
}
And then I received a warning:
float can't be used with display:inline-block issue
Currently the code works with no issue. But I want to know is there anyway I can improve this code better to avoid potential issue.
Thank you!