[IPython-dev] Examples of custom CSS for side-by-side (horizontal) output layout?

Matthias Bussonnier bussonniermatthias at gmail.com
Thu Jul 3 02:50:25 EDT 2014


Le 3 juil. 2014 à 04:52, Fernando Perez a écrit :

> Hi folks,
> 
> I know in the past people have mentioned having customized their notebook layouts to display output next to the input cells instead of below them.
> 
> Does anyone have an example handy of this, so I can refer a colleague to it?


%%html
<style>
div.cell{
	box-orient:horizontal;
	flex-direction:row;
}

div.cell *{
	width:100%;
}

div.prompt{
	width:80px;

}
</style>

CF : https://twitter.com/Mbussonn/status/474189448452665344

-- 
M
> 
> Thanks!
> 
> f

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ipython-dev/attachments/20140703/34b8675a/attachment.html>


More information about the IPython-dev mailing list