-
Notifications
You must be signed in to change notification settings - Fork 794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not properly processing lists #2415
Comments
I believe the issue is since the |
Unfortunately, that produces the following error:
|
That's strange, I don't get that error when I have the structure: <ul class="nav nav-tabs" id="mainTab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" id="loginSettingsTab" data-toggle="tab" href="#loginSettingsContent" role="tab" aria-controls="loginSettingsContent" aria-selected="true">
<i class="fas fa-key fa-fw"></i> Login
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="accountDetailsTab" data-toggle="tab" href="#accountDetailsContent" role="tab" aria-controls="accountDetailsContent" aria-selected="false">
<i class="fas fa-info fa-fw"></i> Account Details
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="notificationsTab" data-toggle="tab" href="#notificationsContent" role="tab" aria-controls="notificationsContent" aria-selected="false">
<i class="far fa-bell fa-fw"></i> Notifications
</a>
</li>
</ul> |
Ahh I was being dumb, I just replaced the link's role, not giving the li one. Putting the role on the li fixed it, thanks for the points! |
I have the following list that forms some navigational elements:
However, I get the following error messages:
I believe that my html is valid, and should not make this error.
The text was updated successfully, but these errors were encountered: