Now this might be a dumb question and if so I sincerely apologise for wasting your time.
I was wondering how one was to call an HTML object with the 'name' tag. Here an example to explain what I mean:
HTML: <p id="one"></p>
CSS: #one{}
HTML: <p class="two"></p>
CSS: .two{}
HTML: <p name="three"></p>
CSS: ?
I need this because I'm working with commercial JavaScript UI components and they have a naming system based on name
.
Thank you for taking the time to answer.