Is it possible to create a new CSS class using browser inspection that contains new hover/focus styles? For example:
.CanIDo {
/*some css rules
(ex.)*/
width: 100;
}
/*my question (USING BROWSER INSPECTOR, not directly typing in the CSS file)*/
.CanIdo a:hover{
opacity: 0.7;
}
I believe this may not be possible because browser inspector only allows changes to the content of a class rather than creating entirely new classes directly. However, there might be browsers that have improved on this feature, which could be beneficial for web development.
Thank you!