Linking to a pdf file with html

LINK Here is my link I’m keeping my pdf file (path.pdf) in the resources folder and am trying to click this link to open the pdf. When I click it while running local the error is ” Your file was not found It may have been moved or deleted.” It’s clearly there. ive checked, spell … Read more

Bootstrap NavBar with left, center or right aligned items

2021 Update Bootstrap 5 (beta) Bootstrap 5 also has a flexbox Navbar, and introduces new RTL support. For this reason the concept of “left” and “right” has been replaced with “start” and “end”. Therefore the margin utilities changed for Bootstrap 5 beta: ml-auto => ms-auto mr-auto => me-auto Also note that data-toggle and data-target have changed too: data-toggle => data-bs-toggle data-target => data-bs-target Navbar Demo for Bootstrap … Read more

what is a parse error and how do I fix it

You have some sort of invisible character that the validator is choking on somewhere (ie. it looks and acts like a space, but it isn’t the space). If I view your CSS file directly and copy/paste the contents into the CSS validator’s direct input validation, it validates

not:first-child selector

One of the versions you posted actually works for all modern browsers (where CSS selectors level 3 are supported): If you need to support legacy browsers, or if you are hindered by the :not selector’s limitation (it only accepts a simple selector as an argument) then you can use another technique: Define a rule that has greater scope than what you intend and then “revoke” it … Read more