Active Current Menu – Adding class to child theme

The default menu in WordPress already adds classnames for the current menu item, and if its a submenu, the parent will have a classname too as current-parent:

li.current-menu-item{
//here your CSS for the current menu item
}

li.current_page_parent{
//here your CSS for parent menu item of the current menu item
}

enter image description here