<html>
<head>
<a href"dynamic link" data=[data-menu-xmlid="testing.testing"]>
</head>
<body>
<div class="class 1">
<body>
<html>
How can i select "div" and "a" at same time?
You can select both div and a with
div,
a{..style goes here..}
But this will be applied to all the div and a tags in the page so you have to include a div element or a section.
section{
div,a{
style here
}
}
So it will be apllied to a specific section
YOU CAN SELECT 2 DIFFERENT HTML ELEMENTS by putting both elements in same selector seperated by a ,
div,a {
background-color: yellow;
}