我有一個React div標籤,其中實際上包含json樹。問題是水平滾動溢出x不起作用。我發佈代碼和錯誤below.Is有任何方法水平滾動使用css在react.Vertical滾動自動工作,如果只是溢出:'滾動'給出。滾動反應
const divStyle={
overflow-y: 'scroll',
border:'1px solid red',
width:'500px',
float: 'left',
height:'500px',
position:'relative'
};
<div style={divStyle}>
<Droppable
types={['yolo']}
style={droppableStyle}
onDrop={this.onDrop.bind(this)}
onDragEnter={this.onDragEnter.bind(this)}
onDragLeave={this.onDragLeave.bind(this)}>
<div style={{textAlign:'left', lineHeight:'100px' ,overflow:'scroll'}}>{this.state.dropped}</div>
</Droppable>
</div>
強大的文本 標籤(父)如果給它溢出-X提供瞭如下錯誤。
./src/Drag.js 語法錯誤:意外的令牌,預計,(38:16)
36 | render(){ 37 |常量divStyle = {
38 | overflow-y: 'scroll', | ^ 39 | border:'1px solid red', 40 | width:'500px', 41 | float: 'left',
「對象鍵不能有破折號/連字符」這是[未真的在所有](https://codepen.io/jrunning/pen/yXJZgB?editors=0011)。 React中的'style'對象使用camelCase而不是破折號*由於引用中提到的原因 - 不是因爲鍵不能有破折號。 –
@JordanRunning,真的,但只有你把它寫成字符串文字。作爲標識符名稱,它們是無效的。 – Chris
我並不懷疑,但對象屬性鍵不是標識符。 [「屬性鍵值可以是ECMAScript字符串值或符號值,所有字符串和符號值(包括空字符串)都可以作爲屬性鍵使用,屬性名稱是屬性鍵值,是一個字符串值。 http://www.ecma-international.org/ecma-262/6.0/#sec-object-type)。 –