#!/usr/bin/env python # coding: utf-8 # # Test notebook for overflowing content # markdown image: # # # # unconfined markdown image: # # # In[1]: from IPython.display import Image, IFrame # Overflow image in HTML (non-embedded) # In[2]: Image(url="http://placehold.it/800x200.png", embed=False) # Overflow image: # In[3]: Image(url="http://placehold.it/800x200.png", embed=True) # Overflow, unconfined # In[4]: Image(url="http://placehold.it/800x200.png", embed=True, unconfined=True) # Overflow with explicit height, width (retina): # In[5]: Image(url="http://placehold.it/1800x200.jpg", embed=True, retina=True) # Overflowing IFrame: # In[ ]: IFrame(src="http://ipython.org", width=900, height=400) # Overflowing table: # In[ ]: import pandas as pd pd.DataFrame([['column'] * 15])