background-image: linear-gradient(to right,red,green,yellow,brown); background-image: linear-gradient(90deg, red,green); background-image: linear-gradient(to right ...
import pandas as pd import numpy as np np.random.seed(24) df = pd.DataFrame(np.random.randn(8, 4), columns=list('ABCD')) df.style.background_gradient() Since all text ...