Skip to content

Instantly share code, notes, and snippets.

@hellpanderrr
Last active August 29, 2015 14:23
Show Gist options
  • Save hellpanderrr/f416405e259e0986cecf to your computer and use it in GitHub Desktop.
Save hellpanderrr/f416405e259e0986cecf to your computer and use it in GitHub Desktop.
Pandas highlight even rows in Ipython Notebook
from IPython.display import HTML
HTML('''
<style>
.df tbody tr:nth-child(even) { background-color: lightblue; }
</style>
''' + df.to_html(classes='df'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment