Skip to content
English
  • There are no suggestions because the search field is empty.

Design Resolutions by IronPdf.UpdatedChrome

Compilation of Updated Chrome design resolvements

 

Overview

IronPdf.UpdatedChrome includes a newer version of the Chromium engine, offering more reliable pixel-perfect rendering compared to Chrome browser print preview.

 

While the standard IronPdf package ships with CEF engine version 109 for compatibility with older Windows Servers, IronPdf.UpdatedChrome uses CEF engine version 131.

This article walks through example use cases where IronPdf.UpdatedChrome resolves rendering issues by design that the standard IronPdf package is unable to address.


 

1. CSS overflow:hidden

 
With IronPdf:
 
With IronPdf.UpdatedChrome:
 

 

2. Specific layout with CSS line-height: 129% and custom paper size of 6 x 9 inch

 
With IronPdf:
textclip

 

With IronPdf.UpdatedChrome:

Text position adjusted accordingly

textclipfixed


 

3. Grid Layout 

<div style="display: grid; grid-template-columns: 1fr 1fr 1fr">
<div style="display:grid; grid-template-columns: subgrid; grid-column: 1/4">

With IronPdf:

subgridissue

 

With IronPdf.UpdatedChrome:

Layout adjusted to subgrid as expected

subgridfixed