A tip for printing tasks from the browser in a user friendly way
Summary
Printing tasks simply does not work using the browsers standard print (control + p) function. However, you can fix this by importing this css file into your web formContent
If you have noticed, when you try to print a task like https://imgur.com/a/Yl06o6q using the browser (ctrl +p) it doesn't work and looks like https://imgur.com/a/Ug6x0bW. You will notice you cannot even see the form. However, if you add a css file to your webform containing the following markup
@media print { .canvas__content { position: fixed; top: 0px;
2