2016-08-05 2 views

答えて

0

幅を100%に設定しましたか?これが私の仕事:

<Toolbar 
    style={{ 
    position: 'fixed', 
    top: 0, 
    width: '100%' 
    }}> 
// Content 
</Toolbar> 

または:

<Toolbar 
    style={{ 
    position: 'fixed', 
    top: 0, 
    left: 0, 
    right: 0, 
    }}> 
// Content 
</Toolbar> 
関連する問題