I am trying to print my webpage but the problem is the thing ::after
in css is always shown in print view I tried to follow the
@media print{
.noprint{
display:none;
}
}
procedure in CSS from here
Update: Here is my code in CSS
@media print{
#submenu,#submenu:after,#add,#view,#del,#edit,#menu_content,#menu{display:none;}
}//should i put double':'?
Here it is